source: frontend/node_modules/argparse/lib/const.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 340 bytes
RevLine 
[9af201e]1//
2// Constants
3//
4
5'use strict';
6
7module.exports.EOL = '\n';
8
9module.exports.SUPPRESS = '==SUPPRESS==';
10
11module.exports.OPTIONAL = '?';
12
13module.exports.ZERO_OR_MORE = '*';
14
15module.exports.ONE_OR_MORE = '+';
16
17module.exports.PARSER = 'A...';
18
19module.exports.REMAINDER = '...';
20
21module.exports._UNRECOGNIZED_ARGS_ATTR = '_unrecognized_args';
Note: See TracBrowser for help on using the repository browser.