Sha256: 6da9b73750cd3abacb9c85db63ecc7824fa65b4ca3e2f88479a02761479d4c37
Contents?: true
Size: 330 Bytes
Versions: 24
Compression:
Stored size: 330 Bytes
Contents
'use strict' var alphabetical = require('is-alphabetical') var decimal = require('is-decimal') module.exports = alphanumerical // Check if the given character code, or the character code at the first // character, is alphanumerical. function alphanumerical(character) { return alphabetical(character) || decimal(character) }
Version data entries
24 entries across 24 versions & 1 rubygems