summaryrefslogtreecommitdiff
path: root/tests/testdata/commonjs/example.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/commonjs/example.js')
-rw-r--r--tests/testdata/commonjs/example.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/testdata/commonjs/example.js b/tests/testdata/commonjs/example.js
new file mode 100644
index 000000000..d2f89d3f0
--- /dev/null
+++ b/tests/testdata/commonjs/example.js
@@ -0,0 +1,11 @@
+// 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);