knowledgebase_law/node_modules/is-hexadecimal/index.d.ts
2025-04-11 11:47:09 -04:00

9 lines
274 B
TypeScript

/**
* Check if the given character code, or the character code at the first
* character, is hexadecimal.
*
* @param {string|number} character
* @returns {boolean} Whether `character` is hexadecimal
*/
export function isHexadecimal(character: string | number): boolean