diff options
author | Luca Casonato <hello@lcas.dev> | 2023-07-31 21:45:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-31 19:45:32 +0000 |
commit | 78ceeec6bedb521dfd2a44530bee9fea62afb289 (patch) | |
tree | 920a6396c8dbaa5b390aae2d431d21ccd5c2905e /cli/tests | |
parent | d5efdeeff149202b24011918984a15389dae98a2 (diff) |
perf: faster node globals access in cjs (#19997)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/testdata/npm/registry/@denotest/cjs-local-global-decls/1.0.0/index.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/tests/testdata/npm/registry/@denotest/cjs-local-global-decls/1.0.0/index.js b/cli/tests/testdata/npm/registry/@denotest/cjs-local-global-decls/1.0.0/index.js index c7b90e5b7..5aa546d91 100644 --- a/cli/tests/testdata/npm/registry/@denotest/cjs-local-global-decls/1.0.0/index.js +++ b/cli/tests/testdata/npm/registry/@denotest/cjs-local-global-decls/1.0.0/index.js @@ -1,4 +1,3 @@ // package that has all the locals defined const Buffer = 1, clearImmediate = 1, clearInterval = 1, clearTimeout = 1, console = 1, global = 1, process = 1, setImmediate = 1, setInterval = 1, setTimeout = 1, globalThis = 1; -const exports = 2; require("./other.js"); |