lintageddon 2

This commit is contained in:
Josh Burman
2020-02-03 16:25:14 -05:00
parent cd876ccfcb
commit e9d7650ffe
15 changed files with 48 additions and 55 deletions

View File

@ -1,5 +1,5 @@
module.exports = {
clientExists: function (id: number) {
clientExists: function(id: number) {
for (const client of this.clients) {
if (client.id === id) {
return client;
@ -8,4 +8,4 @@ module.exports = {
return null;
}
}
};