special-symbols.js 327 B

12345678910111213141516171819202122
  1. /**
  2. * The MIT License (MIT)
  3. * Copyright (c) 2017-present Dmitry Soshnikov <dmitry.soshnikov@gmail.com>
  4. */
  5. 'use strict';
  6. /**
  7. * Epsilon, the empty string.
  8. */
  9. var EPSILON = 'ε';
  10. /**
  11. * Epsilon-closure.
  12. */
  13. var EPSILON_CLOSURE = EPSILON + '*';
  14. module.exports = {
  15. EPSILON: EPSILON,
  16. EPSILON_CLOSURE: EPSILON_CLOSURE
  17. };