Replying to @datenreisender

@datenreisender On individual args you can
use

args.arg1 || defaultValue;

Using destructuring assignment this will even be nicer:

argsWithDefaults = { ...defaults, ...args }

Fri, 22 Mar 2019 10:36:56 UTC