(value: string)
| 27 | * Validates whether a string is a well-formed UUID (any version). |
| 28 | */ |
| 29 | export function isValidUuid(value: string): boolean { |
| 30 | return UUID_RE.test(value) |
| 31 | } |
| 32 | |
| 33 | const URL_SAFE_ALPHABET = 'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict' |
| 34 |
no test coverage detected