filestash/public/lib/random.js
2023-08-02 19:39:34 +10: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;
}