pub(super) fn is_js_keyword(value: &str) -> bool {
matches!(
value,
"as" | "async"
| "await"
| "break"
| "case"
| "catch"
| "class"
| "const"
| "continue"
| "debugger"
| "default"
| "delete"
| "do"
| "else"
| "enum"
| "export"
| "extends"
| "false"
| "finally"
| "for"
| "from"
| "function"
| "get"
| "if"
| "implements"
| "import"
| "in"
| "instanceof"
| "interface"
| "let"
| "new"
| "null"
| "of"
| "package"
| "private"
| "protected"
| "public"
| "return"
| "set"
| "static"
| "super"
| "switch"
| "this"
| "throw"
| "true"
| "try"
| "type"
| "typeof"
| "undefined"
| "var"
| "void"
| "while"
| "with"
| "yield"
)
}
pub(super) fn is_js_constant(value: &str) -> bool {
let mut chars = value.chars();
let Some(first) = chars.next() else {
return false;
};
first.is_ascii_uppercase()
&& chars.all(|ch| ch.is_ascii_uppercase() || ch.is_ascii_digit() || ch == '_')
}