Index: node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/examples/constants.js |
diff --git a/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/examples/constants.js b/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/examples/constants.js |
new file mode 100755 |
index 0000000000000000000000000000000000000000..172a4f3d4f62c00020e7dbb3af6d76095cfc1ba4 |
--- /dev/null |
+++ b/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/examples/constants.js |
@@ -0,0 +1,59 @@ |
+#!/usr/bin/env node |
+'use strict'; |
+ |
+var ArgumentParser = require('../lib/argparse').ArgumentParser; |
+var parser = new ArgumentParser({ |
+ version: '0.0.1', |
+ addHelp: true, |
+ description: 'Argparse examples: constant' |
+}); |
+ |
+parser.addArgument( |
+ [ '-a'], |
+ { |
+ action: 'storeConst', |
+ dest: 'answer', |
+ help: 'store constant', |
+ constant: 42 |
+ } |
+); |
+parser.addArgument( |
+ [ '--str' ], |
+ { |
+ action: 'appendConst', |
+ dest: 'types', |
+ help: 'append constant "str" to types', |
+ constant: 'str' |
+ } |
+); |
+parser.addArgument( |
+ [ '--int' ], |
+ { |
+ action: 'appendConst', |
+ dest: 'types', |
+ help: 'append constant "int" to types', |
+ constant: 'int' |
+ } |
+); |
+ |
+parser.addArgument( |
+ [ '--true' ], |
+ { |
+ action: 'storeTrue', |
+ help: 'store true constant' |
+ } |
+); |
+parser.addArgument( |
+ [ '--false' ], |
+ { |
+ action: 'storeFalse', |
+ help: 'store false constant' |
+ } |
+); |
+ |
+parser.printHelp(); |
+console.log('-----------'); |
+ |
+var args; |
+args = parser.parseArgs('-a --str --int --true'.split(' ')); |
+console.dir(args); |