-
-
Notifications
You must be signed in to change notification settings - Fork 36
Comparing changes
Open a pull request
base repository: minimistjs/minimist
base: 13077b369b092797bb176fd18131d07b0d6c2d1c
head repository: minimistjs/minimist
compare: 6901ee286bc4c16da6830b48b46ce1574703cea1
Commits on Aug 11, 2014
-
Configuration menu - View commit details
-
Copy full SHA for 6f3cc5d - Browse repository at this point
Copy the full SHA 6f3cc5dView commit details -
extra fn to get 100% coverage again
James Halliday committedAug 11, 2014 Configuration menu - View commit details
-
Copy full SHA for a6972da - Browse repository at this point
Copy the full SHA a6972daView commit details -
James Halliday committed
Aug 11, 2014 Configuration menu - View commit details
-
Copy full SHA for 02ed371 - Browse repository at this point
Copy the full SHA 02ed371View commit details -
James Halliday committed
Aug 11, 2014 Configuration menu - View commit details
-
Copy full SHA for e5531ba - Browse repository at this point
Copy the full SHA e5531baView commit details -
James Halliday committed
Aug 11, 2014 Configuration menu - View commit details
-
Copy full SHA for e2563e4 - Browse repository at this point
Copy the full SHA e2563e4View commit details
Commits on Mar 10, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 8c444fe - Browse repository at this point
Copy the full SHA 8c444feView commit details -
check that they type of a value is a boolean, not just that it is cur…
…rently set to a boolean
Configuration menu - View commit details
-
Copy full SHA for 6863198 - Browse repository at this point
Copy the full SHA 6863198View commit details -
if the previous value was a boolean, without an default (or with an a…
…lias) don't make an array either
Configuration menu - View commit details
-
Copy full SHA for e5f419a - Browse repository at this point
Copy the full SHA e5f419aView commit details
Commits on Mar 11, 2015
-
upgrade tape, fix type issues from old tape version
James Halliday committedMar 11, 2015 Configuration menu - View commit details
-
Copy full SHA for 806712d - Browse repository at this point
Copy the full SHA 806712dView commit details -
James Halliday committed
Mar 11, 2015 Configuration menu - View commit details
-
Copy full SHA for bc9d1c4 - Browse repository at this point
Copy the full SHA bc9d1c4View commit details
Commits on Apr 3, 2015
-
use non-ancient npm, node 0.12 and iojs
James Halliday committedApr 3, 2015 Configuration menu - View commit details
-
Copy full SHA for 61ed1d0 - Browse repository at this point
Copy the full SHA 61ed1d0View commit details -
James Halliday committed
Apr 3, 2015 Configuration menu - View commit details
-
Copy full SHA for 25cf778 - Browse repository at this point
Copy the full SHA 25cf778View commit details
Commits on Jul 22, 2015
-
Convert boolean arguments to boolean values
When passing the boolean argument with `--boool=true` or `--boool=false`.
Configuration menu - View commit details
-
Copy full SHA for 8f3dc27 - Browse repository at this point
Copy the full SHA 8f3dc27View commit details -
James Halliday committed
Jul 22, 2015 Configuration menu - View commit details
-
Copy full SHA for a8e2fe1 - Browse repository at this point
Copy the full SHA a8e2fe1View commit details
Commits on Aug 6, 2015
-
add failing test - boolean alias array
When using a boolean value that has an array of aliases the aliases swallow the next value ```javascript var regular = [ '--herp', 'derp' ]; var opts = { alias: { 'h': ['herp', 'harp'] }, boolean: 'h' }; var argv = parse(regular, opts); assert.strictEqual(argv.herp, true); // fails with 'derp' assert.strictEqual(argv._[0], 'derp'); // fails undefined ```
Configuration menu - View commit details
-
Copy full SHA for 0fa3c5b - Browse repository at this point
Copy the full SHA 0fa3c5bView commit details -
fix boolean values with multiple aliases
When using a boolean value that has an array of aliases the aliases show not swallow the next value but should be treated like other booleans ```javascript var regular = [ '--herp', 'derp' ]; var alt = [ '--harp', 'derp' ]; var opts = { alias: { 'h': ['herp', 'harp'] }, boolean: 'h' }; var argv = parse(regular, opts); assert.strictEqual(argv.herp, true); assert.strictEqual(argv.harp, true); assert.strictEqual(argv._[0], 'derp'); var argvAlt = parse(alt, opts); assert.strictEqual(argv.herp, true); assert.strictEqual(argv.harp, true); assert.strictEqual(argv._[0], 'derp'); ```
Configuration menu - View commit details
-
Copy full SHA for 9c0a6e7 - Browse repository at this point
Copy the full SHA 9c0a6e7View commit details -
James Halliday committed
Aug 6, 2015 Configuration menu - View commit details
-
Copy full SHA for 8a5d94c - Browse repository at this point
Copy the full SHA 8a5d94cView commit details
Commits on Aug 24, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 86b321a - Browse repository at this point
Copy the full SHA 86b321aView commit details -
James Halliday committed
Aug 24, 2015 Configuration menu - View commit details
-
Copy full SHA for 63416b8 - Browse repository at this point
Copy the full SHA 63416b8View commit details -
James Halliday committed
Aug 24, 2015 Configuration menu - View commit details
-
Copy full SHA for 6bbe145 - Browse repository at this point
Copy the full SHA 6bbe145View commit details -
James Halliday committed
Aug 24, 2015 Configuration menu - View commit details
-
Copy full SHA for f72ab7f - Browse repository at this point
Copy the full SHA f72ab7fView commit details -
James Halliday committed
Aug 24, 2015 Configuration menu - View commit details
-
Copy full SHA for f5a48c3 - Browse repository at this point
Copy the full SHA f5a48c3View commit details -
James Halliday committed
Aug 24, 2015 Configuration menu - View commit details
-
Copy full SHA for dc62448 - Browse repository at this point
Copy the full SHA dc62448View commit details
Commits on Aug 29, 2015
-
move the
opts['--']
example back where it belongsIt was accidentally separated from the `opts['--']` bullet point be the new option added in commit 6f3cc5d.
Configuration menu - View commit details
-
Copy full SHA for 5fa440e - Browse repository at this point
Copy the full SHA 5fa440eView commit details -
Merge pull request #63 from lydell/dash-dash-docs-fix
move the `opts['--']` example back where it belongs
James Halliday committedAug 29, 2015 Configuration menu - View commit details
-
Copy full SHA for 4cf45a2 - Browse repository at this point
Copy the full SHA 4cf45a2View commit details
Commits on Mar 10, 2020
-
Configuration menu - View commit details
-
Copy full SHA for ac3fc79 - Browse repository at this point
Copy the full SHA ac3fc79View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6be5dae - Browse repository at this point
Copy the full SHA 6be5daeView commit details -
substack committed
Mar 10, 2020 Configuration menu - View commit details
-
Copy full SHA for 29783cd - Browse repository at this point
Copy the full SHA 29783cdView commit details -
failing test for protocol pollution
substack committedMar 10, 2020 Configuration menu - View commit details
-
Copy full SHA for 0efed03 - Browse repository at this point
Copy the full SHA 0efed03View commit details -
substack committed
Mar 10, 2020 Configuration menu - View commit details
-
Copy full SHA for 47acf72 - Browse repository at this point
Copy the full SHA 47acf72View commit details -
substack committed
Mar 10, 2020 Configuration menu - View commit details
-
Copy full SHA for 63e7ed0 - Browse repository at this point
Copy the full SHA 63e7ed0View commit details -
substack committed
Mar 10, 2020 Configuration menu - View commit details
-
Copy full SHA for 67d3722 - Browse repository at this point
Copy the full SHA 67d3722View commit details -
substack committed
Mar 10, 2020 Configuration menu - View commit details
-
Copy full SHA for f34df07 - Browse repository at this point
Copy the full SHA f34df07View commit details -
more failing proto pollution tests
substack committedMar 10, 2020 Configuration menu - View commit details
-
Copy full SHA for 13c01a5 - Browse repository at this point
Copy the full SHA 13c01a5View commit details -
even more aggressive checks for protocol pollution
substack committedMar 10, 2020 Configuration menu - View commit details
-
Copy full SHA for 38a4d1c - Browse repository at this point
Copy the full SHA 38a4d1cView commit details -
substack committed
Mar 10, 2020 Configuration menu - View commit details
-
Copy full SHA for 6457d74 - Browse repository at this point
Copy the full SHA 6457d74View commit details
Commits on Mar 11, 2020
-
additional test for constructor prototype pollution
substack committedMar 11, 2020 Configuration menu - View commit details
-
Copy full SHA for 1043d21 - Browse repository at this point
Copy the full SHA 1043d21View commit details -
substack committed
Mar 11, 2020 Configuration menu - View commit details
-
Copy full SHA for 4cf1354 - Browse repository at this point
Copy the full SHA 4cf1354View commit details -
substack committed
Mar 11, 2020 Configuration menu - View commit details
-
Copy full SHA for 278677b - Browse repository at this point
Copy the full SHA 278677bView commit details
Commits on Mar 12, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 10bd4cd - Browse repository at this point
Copy the full SHA 10bd4cdView commit details -
substack committed
Mar 12, 2020 Configuration menu - View commit details
-
Copy full SHA for aeb3e27 - Browse repository at this point
Copy the full SHA aeb3e27View commit details
Commits on Mar 22, 2022
-
test from prototype pollution PR
substack committedMar 22, 2022 Configuration menu - View commit details
-
Copy full SHA for bc8ecee - Browse repository at this point
Copy the full SHA bc8eceeView commit details -
isConstructorOrProto adapted from PR
substack committedMar 22, 2022 Configuration menu - View commit details
-
Copy full SHA for c2b9819 - Browse repository at this point
Copy the full SHA c2b9819View commit details -
Configuration menu - View commit details
-
Copy full SHA for ef9153f - Browse repository at this point
Copy the full SHA ef9153fView commit details -
security notice for additional prototype pollution issue
substack committedMar 22, 2022 Configuration menu - View commit details
-
Copy full SHA for ef88b93 - Browse repository at this point
Copy the full SHA ef88b93View commit details -
substack committed
Mar 22, 2022 Configuration menu - View commit details
-
Copy full SHA for 7efb22a - Browse repository at this point
Copy the full SHA 7efb22aView commit details
Commits on Oct 10, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 56cad44 - Browse repository at this point
Copy the full SHA 56cad44View commit details -
Configuration menu - View commit details
-
Copy full SHA for 282b570 - Browse repository at this point
Copy the full SHA 282b570View commit details
Commits on Oct 16, 2022
-
Configuration menu - View commit details
-
Copy full SHA for e5f5067 - Browse repository at this point
Copy the full SHA e5f5067View commit details -
Configuration menu - View commit details
-
Copy full SHA for 36ac5d0 - Browse repository at this point
Copy the full SHA 36ac5d0View commit details
There are no files selected for viewing
This file was deleted.