AK-21/Graphite-Industrial-Intelligence
0
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 