dangerous.js 290 B

12345678910111213141516
  1. /**
  2. * List of legacy (that don’t need a trailing `;`) named references which could,
  3. * depending on what follows them, turn into a different meaning
  4. *
  5. * @type {Array<string>}
  6. */
  7. export const dangerous = [
  8. 'cent',
  9. 'copy',
  10. 'divide',
  11. 'gt',
  12. 'lt',
  13. 'not',
  14. 'para',
  15. 'times'
  16. ]