Files
sp80/sample_interface/node_modules/is-alphanumerical/index.d.ts
2026-03-18 16:27:34 +08:00

9 lines
284 B
TypeScript

/**
* 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