You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
325 B
11 lines
325 B
3 years ago
|
// 生成随机字符串
|
||
|
export default function (len = 32) {
|
||
|
const $chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890';
|
||
|
const maxPos = $chars.length;
|
||
|
let str = '';
|
||
|
for (let i = 0; i < len; i++) {
|
||
|
str += $chars.charAt(Math.floor(Math.random() * maxPos));
|
||
|
}
|
||
|
return str;
|
||
|
}
|