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.
20 lines
481 B
20 lines
481 B
import shuffle from './shuffle';
|
|
|
|
/**
|
|
* 获取n位随机字符串
|
|
*
|
|
* 示例:
|
|
* (number: 3) => string: dz1
|
|
*/
|
|
export default function getRandomString(n = 20) {
|
|
const srcStr = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
|
let str = shuffle(srcStr);
|
|
let len = str.length;
|
|
if (typeof n != 'number' || n <= 0) {
|
|
return '';
|
|
} else if (n > len) {
|
|
return str + getRandomString(n - len);
|
|
} else {
|
|
return str.substring(0, n);
|
|
}
|
|
}
|
|
|