zeta-icon-name-checker
Version:
A utility used to check the validity of icon and category names in the Zeta Icon Library.
32 lines (31 loc) • 371 B
text/typescript
export const reservedWords = [
"assert",
"break",
"case",
"catch",
"class",
"const",
"continue",
"default",
"do",
"else",
"enum",
"extends",
"finally",
"for",
"if",
"in",
"is",
"new",
"null",
"rethrow",
"return",
"switch",
"this",
"throw",
"true",
"try",
"var",
"void",
"while",
];