epiphany/node_modules/is-alphabetical
2023-12-09 22:19:03 -08:00
..
index.js install 11ty 2023-12-09 22:19:03 -08:00
license install 11ty 2023-12-09 22:19:03 -08:00
package.json install 11ty 2023-12-09 22:19:03 -08:00
readme.md install 11ty 2023-12-09 22:19:03 -08:00

is-alphabetical

Build Coverage Downloads Size

Check if a character is alphabetical.

Install

npm:

npm install is-alphabetical

Use

var alphabetical = require('is-alphabetical')

alphabetical('a') // => true
alphabetical('B') // => true
alphabetical('0') // => false
alphabetical('💩') // => false

API

alphabetical(character|code)

Check whether the given character code (number), or the character code at the first position (string), is alphabetical.

License

MIT © Titus Wormer