rittenhop-dev/versions/5.94.2/node_modules/is-alphanumerical
2024-09-23 19:40:12 -04:00
..
index.js first commit 2024-09-23 19:40:12 -04:00
license first commit 2024-09-23 19:40:12 -04:00
package.json first commit 2024-09-23 19:40:12 -04:00
readme.md first commit 2024-09-23 19:40:12 -04:00

is-alphanumerical

Build Coverage Downloads Size

Check if a character is alphanumerical ([a-zA-Z0-9]).

Install

npm:

npm install is-alphanumerical

Use

var alphanumerical = require('is-alphanumerical')

alphanumerical('a') // => true
alphanumerical('Z') // => true
alphanumerical('0') // => true
alphanumerical(' ') // => false
alphanumerical('💩') // => false

API

alphanumerical(character)

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

License

MIT © Titus Wormer