Reply to 1108977315516739585
@datenreisender On individual args you can use
args.arg1 || defaultValue;
Using destructuring assignment this will even be nicer:
argsWithDefaults = { ...defaults, ...args }
Reply to 1108977315516739585
@datenreisender On individual args you can use
args.arg1 || defaultValue;
Using destructuring assignment this will even be nicer:
argsWithDefaults = { ...defaults, ...args }