Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

const.js 340B

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';