1 2 3 4 5 6 7
exports.globalThis = globalThis; exports.global = global; exports.process = process; exports.withNodeGlobalThis = function (action) { action(globalThis); };