diff options
Diffstat (limited to 'cli/tests/testdata/commonjs/example.js')
-rw-r--r-- | cli/tests/testdata/commonjs/example.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cli/tests/testdata/commonjs/example.js b/cli/tests/testdata/commonjs/example.js new file mode 100644 index 000000000..785078037 --- /dev/null +++ b/cli/tests/testdata/commonjs/example.js @@ -0,0 +1,11 @@ +// Copyright 2018-2022 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); |