diff options
Diffstat (limited to 'cli/tests/testdata/commonjs/example.js')
-rw-r--r-- | cli/tests/testdata/commonjs/example.js | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/cli/tests/testdata/commonjs/example.js b/cli/tests/testdata/commonjs/example.js deleted file mode 100644 index d2f89d3f0..000000000 --- a/cli/tests/testdata/commonjs/example.js +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -// deno-lint-ignore no-undef -const processMod = require("process"); -const osMod = require("node:os"); -console.log("process.pid", processMod.pid); -console.log("os.EOL", osMod.EOL); -const leftPad = require("left-pad"); -const json = require("./data"); -console.log(json); -console.log(leftPad("foo", 5)); // => " foo" -console.log("main module", processMod.mainModule.filename); |