is-alphabetical

Check if a character is alphabetical

Usage no npm install needed!

<script type="module">
  import isAlphabetical from 'https://cdn.skypack.dev/is-alphabetical';
</script>

README

is-alphabetical

Build Coverage Downloads Size

Check if a character is (ASCII) alphabetical.

Install

This package is ESM only: Node 12+ is needed to use it and it must be imported instead of required.

npm:

npm install is-alphabetical

Use

import {isAlphabetical} from 'is-alphabetical'

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

API

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.

Related

License

MIT © Titus Wormer