guid.tsx 241 B

1234567
  1. export function uniqueId(): string {
  2. const s4 = (): string =>
  3. Math.floor((1 + Math.random()) * 0x10000)
  4. .toString(16)
  5. .substring(1);
  6. return s4() + s4() + '-' + s4() + '-' + s4() + '-' + s4() + '-' + s4() + s4() + s4();
  7. }