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