mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
5 lines
121 B
JavaScript
5 lines
121 B
JavaScript
var writer = Bun.stdout.writer();
|
|
writer.write(JSON.stringify(process.argv));
|
|
await writer.flush(true);
|
|
process.exit(0);
|