lintageddon 1

This commit is contained in:
Josh Burman
2020-02-03 16:05:24 -05:00
parent efa28482de
commit cd876ccfcb
13 changed files with 39 additions and 46 deletions

View File

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