1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-02 09:34:19 -04:00
denoland-deno/std/installer/testdata/args.ts
2019-10-09 17:10:09 -04:00

9 lines
215 B
TypeScript

function args(args: string[]) {
const map = {};
for (let i = 0; i < args.length; i++) {
map[i] = args[i];
}
Deno.stdout.write(new TextEncoder().encode(JSON.stringify(map)));
}
args(Deno.args.slice(1));