CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
index.d.ts9 linesDownload Raw Back to is-alphanumerical
1/**2 * Check if the given character code, or the character code at the first3 * character, is alphanumerical.4 *5 * @param {string|number} character6 * @returns {boolean} Whether `character` is alphanumerical.7 */8export function isAlphanumerical(character: string | number): boolean9