summaryrefslogtreecommitdiff
path: root/tests/registry/npm/@denotest/bin/1.0.0/cli-cjs.js
blob: 671e0c4a5aecb9270064b1b58159bbc6d279c18b (plain)
1
2
3
4
5
6
7
#!/usr/bin/env -S node

const process = require("process");

for (const arg of process.argv.slice(2)) {
  console.log(arg);
}