Add missing compiled files so we dont need to complie from a clean clone

This commit is contained in:
2025-06-01 11:37:57 -07:00
parent bcc8d59dfc
commit 17f82bbeca
7 changed files with 3774 additions and 0 deletions

9
static/IDUtils.js Normal file
View File

@@ -0,0 +1,9 @@
function uuidv4() {
return "10000000-1000-4000-8000-100000000000".replace(/[018]/g, (c) => (c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> c / 4).toString(16));
}
export function generateID() {
if (self.crypto.hasOwnProperty("randomUUID")) {
return self.crypto.randomUUID();
}
return uuidv4();
}