MCPcopy
hub / github.com/webpack/webpack / isAsciiUpperAlpha

Function isAsciiUpperAlpha

lib/html/syntax.js:222–223  ·  view source on GitHub ↗
(cc)

Source from the content-addressed store, hash-verified

220 * @returns {boolean} is ascii upper alpha
221 */
222const isAsciiUpperAlpha = (cc) =>
223 cc < 0x80 && (CHAR_CLASS[cc] & CCLS_UPPER) !== 0;
224
225/**
226 * @param {number} cc character code

Callers 1

walkHtmlTokensFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected