mirror of
https://github.com/funamitech/mastodon
synced 2024-12-12 05:39:02 +09:00
1565af1caf
Port 4520e6473a
to glitch-soc
Signed-off-by: Plastikmensch <plastikmensch@users.noreply.github.com>
4 lines
218 B
TypeScript
4 lines
218 B
TypeScript
export default function uuid(a?: string): string {
|
|
return a ? ((a as any as number) ^ Math.random() * 16 >> (a as any as number) / 4).toString(16) : ('' + 1e7 + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, uuid);
|
|
}
|