c1f436f21463dffb7e3701d6ced07cd644ca4580c463be14fc93c0f0ff45c08a198ad385a9df48acf867718e35eb52334b807787ad7263a680e0d020f65865 340 B

123456789101112131415161718192021
  1. //
  2. // Constants
  3. //
  4. 'use strict';
  5. module.exports.EOL = '\n';
  6. module.exports.SUPPRESS = '==SUPPRESS==';
  7. module.exports.OPTIONAL = '?';
  8. module.exports.ZERO_OR_MORE = '*';
  9. module.exports.ONE_OR_MORE = '+';
  10. module.exports.PARSER = 'A...';
  11. module.exports.REMAINDER = '...';
  12. module.exports._UNRECOGNIZED_ARGS_ATTR = '_unrecognized_args';