This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/is-alphabetical/readme.md
2020-11-01 22:46:04 +00:00

1.6 KiB

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