chore (frontend): move url in frontend

This commit is contained in:
MickaelK
2023-11-27 20:58:54 +11:00
parent def45d5ad5
commit dd6e91c493
151 changed files with 63 additions and 36 deletions

View File

@ -0,0 +1,6 @@
export function gid(prefix = "") {
let id = prefix;
id += new Date().getTime().toString(32);
id += Math.random().toString(32).replace(/^0\./, "");
return id;
}