Node.js examples for String:Char
Is Char Small Letter
function isCharSmallLetter ( char ) { return char >= 'a' && char <= 'z'; }