Initial commit: Copilot Toolbox template project

This commit is contained in:
Evan
2026-01-09 10:49:51 +08:00
commit 0b4b053566
31 changed files with 12085 additions and 0 deletions

8
src/utils/polyfills.ts Normal file
View File

@@ -0,0 +1,8 @@
if (!Object.hasOwn) {
Object.defineProperty(Object, 'hasOwn', {
value: function(obj: any, prop: string): boolean {
return Object.prototype.hasOwnProperty.call(obj, prop)
},
configurable: true
})
}