mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
6 lines
185 B
TypeScript
6 lines
185 B
TypeScript
|
|
const uuidv4Regex = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;
|
|
|
|
export function isUuidv4(value: string): value is string {
|
|
return uuidv4Regex.test(value);
|
|
} |