@esfaenza/extensions 11.2.23 → 11.2.24
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.
- package/bundles/esfaenza-extensions.umd.js +1 -1
- package/bundles/esfaenza-extensions.umd.js.map +1 -1
- package/bundles/esfaenza-extensions.umd.min.js +1 -1
- package/bundles/esfaenza-extensions.umd.min.js.map +1 -1
- package/esm2015/lib/services/extensions.dates.service.js +2 -2
- package/fesm2015/esfaenza-extensions.js +1 -1
- package/fesm2015/esfaenza-extensions.js.map +1 -1
- package/package.json +1 -1
|
@@ -710,7 +710,7 @@
|
|
|
710
710
|
tryThis = toCall(date, this.cfg.smallDate);
|
|
711
711
|
else if (length == this.cfg.fulldateNoSS.length)
|
|
712
712
|
tryThis = toCall(date, this.cfg.fulldateNoSS);
|
|
713
|
-
if (tryThis.isValid())
|
|
713
|
+
if (tryThis && tryThis.isValid())
|
|
714
714
|
return tryThis;
|
|
715
715
|
// Se niente funziona, null.
|
|
716
716
|
// Ricondurre l'Input ad una data non è possibile.
|