diff options
Diffstat (limited to 'tests/registry/npm/@denotest/bin/1.0.0/cli.mjs')
-rw-r--r-- | tests/registry/npm/@denotest/bin/1.0.0/cli.mjs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/registry/npm/@denotest/bin/1.0.0/cli.mjs b/tests/registry/npm/@denotest/bin/1.0.0/cli.mjs new file mode 100644 index 000000000..0ae8e9190 --- /dev/null +++ b/tests/registry/npm/@denotest/bin/1.0.0/cli.mjs @@ -0,0 +1,5 @@ +import process from "node:process"; + +for (const arg of process.argv.slice(2)) { + console.log(arg); +} |