mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
refactor: 🔒 improve type security and performance by using strict equality
This commit is contained in:
parent
eaad13d0d5
commit
f8175ab7a3
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user