MCPcopy
hub / github.com/webpack/webpack / isAsciiAlphanumeric

Function isAsciiAlphanumeric

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

Source from the content-addressed store, hash-verified

201 * @returns {boolean} is ascii alphanumeric
202 */
203const isAsciiAlphanumeric = (cc) =>
204 cc < 0x80 && (CHAR_CLASS[cc] & CCLS_ALNUM) !== 0;
205
206/**
207 * @param {number} cc character code

Callers 1

walkHtmlTokensFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected