1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-04 08:54:20 -05:00
denoland-deno/cli/tests/testdata/npm/registry/@denotest/globals/1.0.0/index.js
Kamil Ogórek ef9b66950f
fix: use static Reflect methods in nodeGlobalThis proxy (#17696)
Co-authored-by: David Sherret <dsherret@gmail.com>
2023-02-08 19:11:12 -05:00

7 lines
160 B
JavaScript

exports.globalThis = globalThis;
exports.global = global;
exports.process = process;
exports.withNodeGlobalThis = function (action) {
action(globalThis);
};