function isLetter()

in lib/lexer.js [58:61]


function isLetter(c) {
  return (c >= 'a' && c <= 'z') ||
    (c >= 'A' && c <= 'Z');
}