refactor: 🔒 improve type security and performance by using strict equality

This commit is contained in:
Julien Oculi 2023-07-10 16:39:49 +02:00
parent eaad13d0d5
commit f8175ab7a3

View File

@ -210,7 +210,7 @@ class WebUiClient {
fn (fn: string, value: string) {
if(!fn || !this.#wsStatus)
return Promise.resolve();
if(typeof value == 'undefined')
if(typeof value === 'undefined')
value = '';
if(!this.#hasEvents && !this.#bindList.includes(this.#winNum + '/' + fn))
return Promise.resolve();