2022-09-12 14:51:33 +00:00
|
|
|
function random(length: number) {
|
2018-05-23 13:39:18 +00:00
|
|
|
let text = '';
|
|
|
|
const possible = 'abcdefghijklmnopqrstuvwxyz';
|
|
|
|
for (let i = 0; i < length; i += 1) {
|
|
|
|
text += possible.charAt(Math.floor(Math.random() * possible.length));
|
|
|
|
}
|
|
|
|
return text;
|
|
|
|
}
|
2022-09-12 14:51:33 +00:00
|
|
|
|
|
|
|
export default random;
|