Open
Description
opened on Jun 15, 2024
Minimist supports a dotted notation that may be used to build an object tree from args:
$ node index.js --foo.bar=x
{ _: [], foo: { bar: 'x' } }
This issue is a request to allow a user to disable this feature, so that the above example is parsed as foo.bar: 'x'
instead of foo: { bar: 'x' }
.
Motivation: the dotted notation supports neither arrays nor keys containing a dot. That makes it hard to use minimist if any of these is used in the application.
Metadata
Assignees
Labels
No labels
Activity