mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
15 lines
314 B
JavaScript
15 lines
314 B
JavaScript
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;
|
|
|