diff --git a/src/misc.ts b/src/misc.ts index 2c0ce0c..bdb97fa 100644 --- a/src/misc.ts +++ b/src/misc.ts @@ -29,6 +29,8 @@ export const greekLetterNames = [ 'Omega', ]; +const hexRegex = /^[0-9a-f-.]+$/; + export function isHex(str: string) { - return /^[0-9a-f-.]+$/.test(str); + return hexRegex.test(str); }