prettyify code

This commit is contained in:
Lee
2023-12-30 23:03:54 +00:00
parent 6fd5fdb7fe
commit ea15b979d5
28 changed files with 2179 additions and 1688 deletions

View File

@ -1,11 +1,11 @@
function getPlayerCountOrNull (resp) {
function getPlayerCountOrNull(resp) {
if (resp) {
return resp.players.online
return resp.players.online;
} else {
return null
return null;
}
}
module.exports = {
getPlayerCountOrNull
}
getPlayerCountOrNull,
};