mirror of
https://github.com/denoland/deno.git
synced 2024-11-02 09:34:19 -04:00
9 lines
215 B
TypeScript
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));
|