stackoverflow 上面的一个,更加标准一点:
export function uuid() {
const s = new Array(36);
const hexDigits = '0123456789abcdef';
for (let i = 0; i < 36; i++) {
const star = Math.floor(Math.random() * 0x10);
s[i] = hexDigits.substring(star, star + 1);
}
s[14] = '4';
const star = (s[19] & 0x3) | 0x8;
s[19] = hexDigits.substring(star, star + 1);
s[23] = '-';
s[18] = '-';
s[13] = '-';
s[8] = '-';
return s.join('');
}