mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-15 19:33:32 +00:00
e6a7cfd12e
Port 5eeb40bdbe
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
10 lines
332 B
TypeScript
10 lines
332 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)
|
|
: // eslint-disable-next-line @typescript-eslint/restrict-plus-operands
|
|
('' + 1e7 + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, uuid);
|
|
}
|