You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would be really usefull if options could take a list of values
currently if I need to pass a list of value for a given option I have to repeat the flag :
bin -a fr -a be -a us
# will return { ..... a: ['fr', 'be', 'us'] }
What if we could parse :
bin -a fr,be,us
# and return { ..... a: ['fr', 'be', 'us'] }
of course there will be a debate on the separator, which should be an option.
This behavior could be trigger with the array option, if a separator option is provided.
Would be really usefull if options could take a list of values
currently if I need to pass a list of value for a given option I have to repeat the flag :
What if we could parse :
of course there will be a debate on the separator, which should be an option.
This behavior could be trigger with the array option, if a separator option is provided.
just check this :
Anybody interested in this ?
The text was updated successfully, but these errors were encountered: