Don't bind functions that don't exist.

上级 4fb26ee9
......@@ -249,10 +249,10 @@ export const originalGlobalValues = {
clearTimeout: globalThis.clearTimeout.bind(globalThis),
setInterval: globalThis.setInterval.bind(globalThis),
clearInterval: globalThis.clearInterval.bind(globalThis),
setImmediate: globalThis.setImmediate.bind(globalThis),
clearImmediate: globalThis.clearImmediate.bind(globalThis),
requestAnimationFrame: globalThis.requestAnimationFrame.bind(globalThis),
cancelAnimationFrame: globalThis.cancelAnimationFrame.bind(globalThis),
setImmediate: globalThis.setImmediate?.bind(globalThis),
clearImmediate: globalThis.clearImmediate?.bind(globalThis),
requestAnimationFrame: globalThis.requestAnimationFrame?.bind(globalThis),
cancelAnimationFrame: globalThis.cancelAnimationFrame?.bind(globalThis),
Date: globalThis.Date,
};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册