1
0
forked from Rowland/EG
EG/Cesium-1.132/node_modules/is-alphanumerical/index.d.ts
2025-08-25 17:48:13 +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