(ch)
| 9075 | } |
| 9076 | |
| 9077 | function isJSXIdentifierStart(ch) { |
| 9078 | // exclude backslash (\) |
| 9079 | return (ch !== 92) && isIdentifierStart(ch); |
| 9080 | } |
| 9081 | |
| 9082 | function isJSXIdentifierPart(ch) { |
| 9083 | // exclude backslash (\) and add hyphen (-) |
no test coverage detected