@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.esm.js CHANGED
@@ -4365,10 +4365,10 @@ class WindowApi {
4365
4365
  globalThis: globalThis,
4366
4366
  self: self,
4367
4367
  top: top,
4368
- setTimeout: globalThis.setTimeout,
4369
- setInterval: globalThis.setInterval,
4370
- clearTimeout: globalThis.clearTimeout,
4371
- clearInterval: globalThis.clearInterval,
4368
+ setTimeout: globalThis.setTimeout.bind(globalThis),
4369
+ setInterval: globalThis.setInterval.bind(globalThis),
4370
+ clearTimeout: globalThis.clearTimeout.bind(globalThis),
4371
+ clearInterval: globalThis.clearInterval.bind(globalThis),
4372
4372
  };
4373
4373
  /** 使用的配置 */
4374
4374
  api;