mirror of
https://github.com/warmbly/warmbly.git
synced 2026-09-09 16:04:41 +00:00
3 lines
98 B
TypeScript
3 lines
98 B
TypeScript
export function is64ByteHex(input: string): boolean {
|
|
return /^[a-fA-F0-9]{128}$/.test(input);
|
|
} |