is-alphanumerical
Check if a character is alphanumerical
Last updated 6 years ago by wooorm .
MIT · Repository · Bugs · Original npm
$ cnpm install is-alphanumerical 
SYNC missed versions from official npm registry.

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.

Related

License

MIT © Titus Wormer

Current Tags

  • 2.0.1                                ...           latest (4 years ago)

3 Versions

  • 2.0.1                                ...           4 years ago
  • 2.0.0                                ...           4 years ago
  • 1.0.4                                ...           6 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (2)
Dev Dependencies (8)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org