(value: string)
| 441 | } as const |
| 442 | |
| 443 | export function isUuid(value: string): boolean { |
| 444 | return PATTERNS.UUID.test(value) |
| 445 | } |
| 446 | |
| 447 | export function isUuidV4(value: string): boolean { |
| 448 | return PATTERNS.UUID_V4.test(value) |
no test coverage detected