Check if character is lowercase alphabetic (a-z)
(c: string)
| 459 | |
| 460 | /** Check if character is lowercase alphabetic (a-z) */ |
| 461 | function 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 "*") */ |
| 467 | function isKeyStart(c: string): boolean { |
no outgoing calls
no test coverage detected