lintageddon 1
This commit is contained in:
@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user