No Description

uuid.js 146B

12345
  1. export default function getUUID() {
  2. return Math.random().toString(36).substring(2, 15) +
  3. Math.random().toString(36).substring(2, 15);
  4. }