mirror of
https://github.com/denoland/deno.git
synced 2024-11-04 08:54:20 -05:00
ef9b66950f
Co-authored-by: David Sherret <dsherret@gmail.com>
7 lines
160 B
JavaScript
7 lines
160 B
JavaScript
exports.globalThis = globalThis;
|
|
exports.global = global;
|
|
exports.process = process;
|
|
|
|
exports.withNodeGlobalThis = function (action) {
|
|
action(globalThis);
|
|
};
|