mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-30 01:26:43 +08:00
7 lines
176 B
JavaScript
7 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;
|
|
}
|