MCPcopy
hub / github.com/webpack/webpack / _isLetter

Function _isLetter

lib/css/syntax.js:319–321  ·  view source on GitHub ↗
(cc)

Source from the content-addressed store, hash-verified

317 * @returns {boolean} is letter (a-z / A-Z)
318 */
319const _isLetter = (cc) =>
320 (cc >= CC_LOWER_A && cc <= CC_LOWER_Z) ||
321 (cc >= CC_UPPER_A && cc <= CC_UPPER_Z);
322
323/**
324 * Spec: ident-start = letter / non-ASCII / `_`. Internal helper that

Callers 2

_isIdentStartCodePointCCFunction · 0.85
syntax.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected