ac5113d524
Port 37d984b8bf
to glitch-soc
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renaud Chaput <renchap@gmail.com>
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);
|
|
}
|