18 lines
358 B
JavaScript
18 lines
358 B
JavaScript
Object.assign(global, {
|
|
Array: Array,
|
|
Date: Date,
|
|
Error: Error,
|
|
Function: Function,
|
|
Math: Math,
|
|
Object: Object,
|
|
RegExp: RegExp,
|
|
String: String,
|
|
TypeError: TypeError,
|
|
setTimeout: setTimeout,
|
|
clearTimeout: clearTimeout,
|
|
setInterval: setInterval,
|
|
clearInterval: clearInterval,
|
|
process: {},
|
|
});
|
|
export {};
|