summaryrefslogtreecommitdiff
path: root/node_modules/is-alphanumerical/index.d.ts
blob: 3fed2bd3fa363ce713a60b05aa3e54f457599a67 (plain)
1
2
3
4
5
6
7
8
/**
 * Check if the given character code, or the character code at the first
 * character, is alphanumerical.
 *
 * @param {string|number} character
 * @returns {boolean} Whether `character` is alphanumerical.
 */
export function isAlphanumerical(character: string | number): boolean