mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboViteDocs.git
synced 2026-06-15 15:16:37 +00:00
17 lines
290 B
JavaScript
17 lines
290 B
JavaScript
|
|
/**
|
|||
|
|
* List of legacy (that don’t need a trailing `;`) named references which could,
|
|||
|
|
* depending on what follows them, turn into a different meaning
|
|||
|
|
*
|
|||
|
|
* @type {Array<string>}
|
|||
|
|
*/
|
|||
|
|
export const dangerous = [
|
|||
|
|
'cent',
|
|||
|
|
'copy',
|
|||
|
|
'divide',
|
|||
|
|
'gt',
|
|||
|
|
'lt',
|
|||
|
|
'not',
|
|||
|
|
'para',
|
|||
|
|
'times'
|
|||
|
|
]
|