@skyux/datetime 12.3.0 → 12.4.0

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.
@@ -3262,8 +3262,8 @@ class SkyFuzzyDatepickerInputDirective {
3262
3262
  }
3263
3263
  /* istanbul ignore next */
3264
3264
  #fuzzyDatesEqual(dateA, dateB) {
3265
- return (dateA !== undefined &&
3266
- dateB !== undefined &&
3265
+ return !!(dateA &&
3266
+ dateB &&
3267
3267
  ((!dateA.day && !dateB.day) || dateA.day === dateB.day) &&
3268
3268
  ((!dateA.month && !dateB.month) || dateA.month === dateB.month) &&
3269
3269
  ((!dateA.year && !dateB.year) || dateA.year === dateB.year));