constant.js 337 B

123456789101112131415161718192021
  1. /**
  2. * Les constantes du projet
  3. */
  4. const cst = {
  5. 'SUCCESS': 0,
  6. 'FILE_NOT_FOUND': 1,
  7. 'PREPROCESS_NOT_FOUND': 2
  8. };
  9. const cstToStr = [
  10. 'Success',
  11. 'Unable to find the file',
  12. 'Unable to find the pre-processing file'
  13. ];
  14. module.exports = cst;
  15. module.exports.toString = function (key) {
  16. return cstToStr[key];
  17. };