Rocket.Chat.ReactNative/e2e/helpers/random.js

10 lines
245 B
JavaScript

function random(length) {
let text = '';
const possible = 'abcdefghijklmnopqrstuvwxyz';
for (let i = 0; i < length; i += 1) {
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
return text;
}
module.exports = random;