mirror of https://github.com/lukechilds/node.git
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.
29 lines
677 B
29 lines
677 B
/**
|
|
* @author Titus Wormer
|
|
* @copyright 2016 Titus Wormer
|
|
* @license MIT
|
|
* @module is-alphanumerical
|
|
* @fileoverview Check if a character is alphanumerical.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/* eslint-env commonjs */
|
|
|
|
/* Dependencies. */
|
|
var alphabetical = require('is-alphabetical');
|
|
var decimal = require('is-decimal');
|
|
|
|
/* Expose. */
|
|
module.exports = alphanumerical;
|
|
|
|
/**
|
|
* Check whether the given character code, or the character
|
|
* code at the first character, is alphanumerical.
|
|
*
|
|
* @param {string|number} character
|
|
* @return {boolean} - Whether `character` is alphanumerical.
|
|
*/
|
|
function alphanumerical(character) {
|
|
return alphabetical(character) || decimal(character);
|
|
}
|
|
|