mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 05:23:14 -08:00
8 lines
248 B
TypeScript
8 lines
248 B
TypeScript
export 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);
|
|
}
|