MCPcopy Create free account
hub / github.com/denoland/std / isLcalpha

Function isLcalpha

http/unstable_structured_fields.ts:461–464  ·  view source on GitHub ↗

Check if character is lowercase alphabetic (a-z)

(c: string)

Source from the content-addressed store, hash-verified

459
460/** Check if character is lowercase alphabetic (a-z) */
461function isLcalpha(c: string): boolean {
462 const code = c.charCodeAt(0);
463 return code >= CHAR_CODE_LOWER_A && code <= CHAR_CODE_LOWER_Z;
464}
465
466/** Check if character is valid at the start of a key (lcalpha or "*") */
467function isKeyStart(c: string): boolean {

Callers 2

isKeyStartFunction · 0.85
isKeyCharFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected