Revert "Revert "* Remove timers.js from build.js inject.""

This reverts commit 184eed8be8.
This commit is contained in:
Derrick Hammer 2023-04-09 02:38:32 -04:00
parent 184eed8be8
commit f69ff102cc
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
2 changed files with 1 additions and 9 deletions

View File

@ -10,5 +10,5 @@ esbuild.buildSync({
define: {
global: "self",
},
inject: ["timers.js", "polyfill.js"],
inject: ["polyfill.js"],
});

View File

@ -1,8 +0,0 @@
import { setTimeout, setInterval, clearTimeout, clearInterval } from 'timers-browserify'
var scope = typeof self !== "undefined" && self || typeof self !== "undefined" && self || window;
scope.setTimeout = setTimeout;
scope.setInterval = setInterval;
scope.clearTimeout = clearTimeout;
scope.clearInterval = clearInterval;