v3.0.8
Issue: In previous versions, we used == null
to check if values were null
or undefined
. This check inadvertently included document.all
due to its unique behavior of being nullish in equality checks despite being an object. This was causing inconsistencies in certain browser environments where document.all
is used as a legacy feature.
Fix: The equality check has been updated to use the nullish coalescing operator ??
. This ensures that only null
or undefined
values are filtered out.
Full Changelog: v3.0.7...v3.0.8