blob: 52dec5baa99a78b864b0f39d7d38ae19643b195b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// This implementation isn't 100% correct
// Ref/unref does not impact whether the process is kept alive
export var { setTimeout, clearTimeout, setInterval, setImmediate, clearInterval, clearImmediate } = globalThis;
export default {
setInterval,
setImmediate,
setTimeout,
clearInterval,
clearTimeout,
[Symbol.for("CommonJS")]: 0,
};
|