kopia lustrzana https://github.com/c9/core
Merge pull request +11952 from c9/automatic-saucelabs-keys
Automatic saucelabs key creatorpull/248/head
commit
a1cf7290c3
|
@ -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;
|
||||||
|
|
Ładowanie…
Reference in New Issue