arg() takes either 1 or 2 arguments: Command line specification object (see below) Parse options (Optional, defaults to {permissive: false, argv: process.argv.slice(2), stopAtPositional: false}) It returns an object with any values present on the command-line (missing options are thus missing from the resulting object). Arg performs no validation/requirement checking - we leave that up to the appl

