We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99bacfb commit aeda69eCopy full SHA for aeda69e
src/index.ts
@@ -34,7 +34,7 @@ const logger: winston.Logger = winston.createLogger({
34
35
const makeid = (length: number): string => {
36
let result = "";
37
- const characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
+ const characters = "abcdefghijklmnopqrstuvwxyz0123456789";
38
const charactersLength = characters.length;
39
for (let i = 0; i < length; i = i + 1) {
40
result += characters.charAt(Math.floor(Math.random() * charactersLength));
0 commit comments