MCPcopy Create free account
hub / github.com/browserify/static-module / isControlLetter

Function isControlLetter

bench/input.js:4127–4132  ·  view source on GitHub ↗
(ch)

Source from the content-addressed store, hash-verified

4125 return false
4126};
4127function isControlLetter(ch) {
4128 return (
4129 (ch >= 0x41 /* A */ && ch <= 0x5A /* Z */) ||
4130 (ch >= 0x61 /* a */ && ch <= 0x7A /* z */)
4131 )
4132}
4133
4134// https://www.ecma-international.org/ecma-262/8.0/#prod-RegExpUnicodeEscapeSequence
4135pp$9.regexp_eatRegExpUnicodeEscapeSequence = function(state) {

Callers 2

input.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…