Init repo con git

This commit is contained in:
Samuele E. Locatelli
2025-08-21 08:59:27 +00:00
parent 4771dea3dc
commit 1d4b5aba63
2457 changed files with 540681 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
/**
* List of legacy (that dont need a trailing `;`) named references which could,
* depending on what follows them, turn into a different meaning
*
* @type {Array<string>}
*/
export const dangerous: Array<string>;
+16
View File
@@ -0,0 +1,16 @@
/**
* List of legacy (that dont 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'
]