@whitesev/utils 2.7.4 → 2.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.amd.js +4 -4
- package/dist/index.amd.js.map +1 -1
- package/dist/index.cjs.js +4 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +4 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/index.iife.js +4 -4
- package/dist/index.iife.js.map +1 -1
- package/dist/index.system.js +4 -4
- package/dist/index.system.js.map +1 -1
- package/dist/index.umd.js +4 -4
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/WindowApi.ts +4 -4
package/dist/index.system.js
CHANGED
|
@@ -4370,10 +4370,10 @@ System.register('Utils', [], (function (exports) {
|
|
|
4370
4370
|
globalThis: globalThis,
|
|
4371
4371
|
self: self,
|
|
4372
4372
|
top: top,
|
|
4373
|
-
setTimeout: globalThis.setTimeout,
|
|
4374
|
-
setInterval: globalThis.setInterval,
|
|
4375
|
-
clearTimeout: globalThis.clearTimeout,
|
|
4376
|
-
clearInterval: globalThis.clearInterval,
|
|
4373
|
+
setTimeout: globalThis.setTimeout.bind(globalThis),
|
|
4374
|
+
setInterval: globalThis.setInterval.bind(globalThis),
|
|
4375
|
+
clearTimeout: globalThis.clearTimeout.bind(globalThis),
|
|
4376
|
+
clearInterval: globalThis.clearInterval.bind(globalThis),
|
|
4377
4377
|
};
|
|
4378
4378
|
/** 使用的配置 */
|
|
4379
4379
|
api;
|