summaryrefslogtreecommitdiff
path: root/tests/registry/npm/@denotest/bin/1.0.0/cli-cjs.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/registry/npm/@denotest/bin/1.0.0/cli-cjs.js')
-rw-r--r--tests/registry/npm/@denotest/bin/1.0.0/cli-cjs.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/registry/npm/@denotest/bin/1.0.0/cli-cjs.js b/tests/registry/npm/@denotest/bin/1.0.0/cli-cjs.js
new file mode 100644
index 000000000..7b6ba2724
--- /dev/null
+++ b/tests/registry/npm/@denotest/bin/1.0.0/cli-cjs.js
@@ -0,0 +1,5 @@
+const process = require("process");
+
+for (const arg of process.argv.slice(2)) {
+ console.log(arg);
+}