summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/npm/registry/@denotest/globals/1.0.0/index.js
blob: daac83c6644e07deeebab29ec2c35feb7e1a32b2 (plain)
1
2
3
4
5
6
7
exports.globalThis = globalThis;
exports.global = global;
exports.process = process;

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