()
| 17 | * - `File` |
| 18 | */ |
| 19 | export function installPolyfills() { |
| 20 | for (const name in globals) { |
| 21 | if (name in globalThis) continue; |
| 22 | |
| 23 | Object.defineProperty(globalThis, name, { |
| 24 | enumerable: true, |
| 25 | configurable: true, |
| 26 | writable: true, |
| 27 | value: globals[name] |
| 28 | }); |
| 29 | } |
| 30 | } |
no outgoing calls
no test coverage detected