Add randomchars lib

This commit is contained in:
Tim Robinson 2016-02-03 21:32:18 +00:00
parent 3109cd6f3b
commit 5f7d2e5880

14
node_modules/c9/randomchars.js generated vendored Normal file
View File

@ -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;