MCPcopy
hub / github.com/dirk1983/deepseek / isLetter

Function isLetter

js/remarkable.js:5013–5017  ·  view source on GitHub ↗
(ch)

Source from the content-addressed store, hash-verified

5011var HTML_TAG_CLOSE_RE = /^<\/([a-zA-Z]{1,15})[\s>]/;
5012
5013function isLetter(ch) {
5014 /*eslint no-bitwise:0*/
5015 var lc = ch | 0x20; // to lower case
5016 return (lc >= 0x61/* a */) && (lc <= 0x7a/* z */);
5017}
5018
5019module.exports = function htmlblock(state, startLine, endLine, silent) {
5020 var ch, match, nextLine,

Callers 1

remarkable.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…