From 9e200b4452dd8d4f657da58a05b63a3abb2c4812 Mon Sep 17 00:00:00 2001 From: addisonbeck Date: Fri, 18 Jul 2025 22:11:54 -0400 Subject: [PATCH] move guid code to new library --- libs/guid/src/index.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/libs/guid/src/index.ts b/libs/guid/src/index.ts index e69de29bb2d..3ef62725ebf 100644 --- a/libs/guid/src/index.ts +++ b/libs/guid/src/index.ts @@ -0,0 +1,13 @@ +export const guidRegex = /^[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i; + +export function newGuid(): string { + return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, (c) => { + const r = (Math.random() * 16) | 0; + const v = c === "x" ? r : (r & 0x3) | 0x8; + return v.toString(16); + }); +} + +export function isGuid(id: string): boolean { + return guidRegex.test(id); +}