mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 04:13:01 +00:00
18f55567b0
Port a7253075d1
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
9 lines
256 B
TypeScript
9 lines
256 B
TypeScript
export function uuid(a?: string): string {
|
|
return a
|
|
? (
|
|
(a as unknown as number) ^
|
|
((Math.random() * 16) >> ((a as unknown as number) / 4))
|
|
).toString(16)
|
|
: ('' + 1e7 + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, uuid);
|
|
}
|