3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-17 23:25:02 +00:00

Some fixes and cleanup

This commit is contained in:
Dragory 2019-04-14 13:30:48 +03:00
parent b74a6d55d6
commit d9fc59f892
3 changed files with 19 additions and 13 deletions

View file

@ -494,3 +494,9 @@ export function ucfirst(str) {
if (typeof str !== "string" || str === "") return str;
return str[0].toUpperCase() + str.slice(1);
}
export const unknownUser = {
id: "0",
username: "Unknown",
discriminator: "0000",
};