Skip to content

v3.0.8

Latest
Compare
Choose a tag to compare
@gurgunday gurgunday released this 28 Sep 09:50
abc4400

Issue: In previous versions, we used == null to check if values were null or undefined. However, 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