Add randomchars lib

pull/248/head
Tim Robinson 2016-02-03 21:32:18 +00:00
rodzic 3109cd6f3b
commit 5f7d2e5880
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;