aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/argparse/lib/action/store/true.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/argparse/lib/action/store/true.js')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/argparse/lib/action/store/true.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/argparse/lib/action/store/true.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/argparse/lib/action/store/true.js
deleted file mode 100644
index 9e22f7d4..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/argparse/lib/action/store/true.js
+++ /dev/null
@@ -1,26 +0,0 @@
-/*:nodoc:*
- * class ActionStoreTrue
- *
- * This action store the values True respectively.
- * This isspecial cases of 'storeConst'
- *
- * This class inherited from [[Action]]
- **/
-'use strict';
-
-var util = require('util');
-
-var ActionStoreConstant = require('./constant');
-
-/*:nodoc:*
- * new ActionStoreTrue(options)
- * - options (object): options hash see [[Action.new]]
- *
- **/
-var ActionStoreTrue = module.exports = function ActionStoreTrue(options) {
- options = options || {};
- options.constant = true;
- options.defaultValue = options.defaultValue !== null ? options.defaultValue : false;
- ActionStoreConstant.call(this, options);
-};
-util.inherits(ActionStoreTrue, ActionStoreConstant);