$ cnpm install is-alphabetical
Check if a character is (ASCII) alphabetical.
This package is ESM only: Node 12+ is needed to use it and it must be import
ed
instead of require
d.
npm:
npm install is-alphabetical
import {isAlphabetical} from 'is-alphabetical'
isAlphabetical('a') // => true
isAlphabetical('B') // => true
isAlphabetical('0') // => false
isAlphabetical('????') // => false
This package exports the following identifiers: isAlphabetical
.
There is no default export.
isAlphabetical(character|code)
Check whether the given character code (number
), or the character code at the
first position (string
), is alphabetical.
Copyright 2013 - present © cnpmjs.org