MCPcopy
hub / github.com/webpack/webpack / _isNonPrintableCodePoint

Function _isNonPrintableCodePoint

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

Source from the content-addressed store, hash-verified

492 * @returns {boolean} true, if cc is a non-printable code point
493 */
494const _isNonPrintableCodePoint = (cc) =>
495 (cc >= 0x00 && cc <= 0x08) ||
496 cc === 0x0b ||
497 (cc >= 0x0e && cc <= 0x1f) ||
498 cc === 0x7f;
499
500/**
501 * Consume the body of a number per the spec (does not classify integer

Callers 1

consumeAUrlTokenFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected