2023-02-22 13:06:16 +00:00
|
|
|
function random(length = 10) {
|
2023-01-25 19:03:02 +00:00
|
|
|
let text = '';
|
2023-02-23 12:53:23 +00:00
|
|
|
const possible = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890';
|
2023-01-25 19:03:02 +00:00
|
|
|
for (let i = 0; i < length; i += 1) {
|
|
|
|
text += possible.charAt(Math.floor(Math.random() * possible.length));
|
|
|
|
}
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default random;
|