guid.tsx 234 B

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