mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-07 17:02:29 +01:00
6 lines
176 B
JavaScript
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;
|
|
}
|