You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Rich Trott c49adbff63 tools: update to ESLint 4.3.0 7 years ago
..
LICENSE doc: add eslint-plugin-markdown 8 years ago
index.js tools: update to ESLint 4.3.0 7 years ago
package.json tools: update to ESLint 4.3.0 7 years ago
readme.md tools: update to ESLint 4.3.0 7 years ago

readme.md

is-alphanumerical Build Status Coverage Status

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

Installation

npm:

npm install is-alphanumerical

Usage

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