@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.iife.js
CHANGED
|
@@ -4368,10 +4368,10 @@ var Utils = (function () {
|
|
|
4368
4368
|
globalThis: globalThis,
|
|
4369
4369
|
self: self,
|
|
4370
4370
|
top: top,
|
|
4371
|
-
setTimeout: globalThis.setTimeout,
|
|
4372
|
-
setInterval: globalThis.setInterval,
|
|
4373
|
-
clearTimeout: globalThis.clearTimeout,
|
|
4374
|
-
clearInterval: globalThis.clearInterval,
|
|
4371
|
+
setTimeout: globalThis.setTimeout.bind(globalThis),
|
|
4372
|
+
setInterval: globalThis.setInterval.bind(globalThis),
|
|
4373
|
+
clearTimeout: globalThis.clearTimeout.bind(globalThis),
|
|
4374
|
+
clearInterval: globalThis.clearInterval.bind(globalThis),
|
|
4375
4375
|
};
|
|
4376
4376
|
/** 使用的配置 */
|
|
4377
4377
|
api;
|