es-toolkit 1.18.0-dev.571 → 1.18.0-dev.573

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -215,7 +215,7 @@ function isNil(x) {
215
215
  }
216
216
 
217
217
  function isNotNil(x) {
218
- return x !== null && x !== undefined;
218
+ return x != null;
219
219
  }
220
220
 
221
221
  function isNull(x) {