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