%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
/*:nodoc:* * class ActionStore * * This action just stores the argument’s value. This is the default action. * * This class inherited from [[Action]] * **/ 'use strict'; var util = require('util'); var Action = require('../action'); // Constants var c = require('../const'); /*:nodoc:* * new ActionStore(options) * - options (object): options hash see [[Action.new]] * **/ var ActionStore = module.exports = function ActionStore(options) { options = options || {}; if (this.nargs <= 0) { throw new Error('nargs for store actions must be > 0; if you ' + 'have nothing to store, actions such as store ' + 'true or store const may be more appropriate'); } if (typeof this.constant !== 'undefined' && this.nargs !== c.OPTIONAL) { throw new Error('nargs must be OPTIONAL to supply const'); } Action.call(this, options); }; util.inherits(ActionStore, Action); /*:nodoc:* * ActionStore#call(parser, namespace, values, optionString) -> Void * - parser (ArgumentParser): current parser * - namespace (Namespace): namespace for output data * - values (Array): parsed values * - optionString (Array): input option string(not parsed) * * Call the action. Save result in namespace object **/ ActionStore.prototype.call = function (parser, namespace, values) { namespace.set(this.dest, values); };