This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-05-08 18:11:56 -07:00
|
|
|
export function uuid(a?: string): string {
|
2023-05-09 14:41:18 -07:00
|
|
|
return a
|
|
|
|
? (
|
2023-05-10 03:59:29 -07:00
|
|
|
(a as unknown as number) ^
|
|
|
|
((Math.random() * 16) >> ((a as unknown as number) / 4))
|
2023-05-09 14:41:18 -07:00
|
|
|
).toString(16)
|
2023-07-13 02:49:16 -07:00
|
|
|
: ('' + 1e7 + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, uuid);
|
2023-04-26 12:30:41 -07:00
|
|
|
}
|