3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-07-07 02:57:20 +00:00

Some fixes and cleanup

This commit is contained in:
Dragory 2019-04-14 13:30:48 +03:00
parent 338855de15
commit 7f0833f699
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",
};