Initial commit
[yaffs-website] / node_modules / argparse / lib / const.js
1 //
2 // Constants
3 //
4
5 'use strict';
6
7 module.exports.EOL = '\n';
8
9 module.exports.SUPPRESS = '==SUPPRESS==';
10
11 module.exports.OPTIONAL = '?';
12
13 module.exports.ZERO_OR_MORE = '*';
14
15 module.exports.ONE_OR_MORE = '+';
16
17 module.exports.PARSER = 'A...';
18
19 module.exports.REMAINDER = '...';
20
21 module.exports._UNRECOGNIZED_ARGS_ATTR = '_unrecognized_args';