Skip to content

Commit aeda69e

Browse files
committed
Only use lowercase
1 parent 99bacfb commit aeda69e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const logger: winston.Logger = winston.createLogger({
3434

3535
const makeid = (length: number): string => {
3636
let result = "";
37-
const characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
37+
const characters = "abcdefghijklmnopqrstuvwxyz0123456789";
3838
const charactersLength = characters.length;
3939
for (let i = 0; i < length; i = i + 1) {
4040
result += characters.charAt(Math.floor(Math.random() * charactersLength));

0 commit comments

Comments
 (0)