filestash/public/assets/lib/random.js
2023-11-27 20:58:54 +11:00

6 lines
176 B
JavaScript

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