Started on the database

This commit is contained in:
Eclypsed
2024-01-23 01:21:41 -05:00
parent fd489b055c
commit 830ab55023
9 changed files with 528 additions and 37 deletions

3
src/lib/utils.ts Normal file
View File

@@ -0,0 +1,3 @@
export const generateUUID = (): string => {
return '10000000-1000-4000-8000-100000000000'.replace(/[018]/g, (c: any) => (c ^ (crypto.getRandomValues(new Uint8Array(1))[0] & (15 >> (c / 4)))).toString(16))
}