Merge pull request +11952 from c9/automatic-saucelabs-keys

Automatic saucelabs key creator
pull/248/head
Tim Robinson 2016-02-10 08:14:45 -05:00
commit a1cf7290c3
1 zmienionych plików z 14 dodań i 0 usunięć

14
node_modules/c9/randomchars.js wygenerowano vendored 100644
Wyświetl plik

@ -0,0 +1,14 @@
function getRandomChars(len) {
var text = "";
if (!len) len = 5;
var possible = "abcdefghijklmnopqrstuvwxyz0123456789";
for (var i=0; i < len; i++) {
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
return text;
}
module.exports = getRandomChars;