c9-core/node_modules/c9/randomchars.js

15 wiersze
314 B
JavaScript
Czysty Zwykły widok Historia

2016-02-03 21:32:18 +00:00
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;