@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.
@@ -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;