main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
369 bytes
|
Line | |
---|
1 | 'use strict'
|
---|
2 |
|
---|
3 | module.exports = alphabetical
|
---|
4 |
|
---|
5 | // Check if the given character code, or the character code at the first
|
---|
6 | // character, is alphabetical.
|
---|
7 | function alphabetical(character) {
|
---|
8 | var code = typeof character === 'string' ? character.charCodeAt(0) : character
|
---|
9 |
|
---|
10 | return (
|
---|
11 | (code >= 97 && code <= 122) /* a-z */ ||
|
---|
12 | (code >= 65 && code <= 90) /* A-Z */
|
---|
13 | )
|
---|
14 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.