Commit 924f8d1
committed
fix: use strict equality for boolean comparison in store.ts
Replace loose equality (==) with strict equality (===) for isListening
boolean comparison on line 253. This follows JavaScript best practices
and prevents potential type coercion issues.
The change is in the onTrigger callback within createSetupStore function,
which handles debugger events during development mode.1 parent 94cc16c commit 924f8d1
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
250 | 250 | | |
251 | 251 | | |
252 | 252 | | |
253 | | - | |
| 253 | + | |
254 | 254 | | |
255 | 255 | | |
256 | 256 | | |
| |||
0 commit comments