Open
Description
argv
is traditionally all arguments, which would include: runtime binary, script being ran, and runtime arguments ("runtime parts"). Should ours?
Existing examples:
process.argv
(Node): includes runtime partsDeno.args
(Deno): does not include runtime parts (they can be got separately withDeno.execPath()
, etc)
Activity