kjelsrud.dev/node_modules/is-hexadecimal/index.d.ts
2023-07-19 21:31:30 +02:00

8 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