1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 19:53:59 +00:00

move guid code to new library

This commit is contained in:
addisonbeck
2025-07-18 22:11:54 -04:00
parent 0c322a3dff
commit 9e200b4452

View File

@@ -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);
}