mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
Add randomchars lib
This commit is contained in:
parent
3109cd6f3b
commit
5f7d2e5880
14
node_modules/c9/randomchars.js
generated
vendored
Normal file
14
node_modules/c9/randomchars.js
generated
vendored
Normal 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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user