(codepoint: number)
| 1275 | } |
| 1276 | |
| 1277 | function _isAlphaOrSlash(codepoint: number): boolean { |
| 1278 | return _isAlpha(codepoint) || codepoint === 47 /* '/' */ |
| 1279 | } |
| 1280 | |
| 1281 | /** See `parseTag` function docs. */ |
| 1282 | function _isPotentialElementNameChar(c: number): boolean { |
no test coverage detected