indicator-ui 0.0.142 → 0.0.143
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/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6970,7 +6970,7 @@ function saveFormatDate(date, { from, to, errorNull = false, locale, toTimeZone,
|
|
|
6970
6970
|
return (0,date_fns_tz__WEBPACK_IMPORTED_MODULE_0__.format)(parsedDate, to, { locale: locale, timeZone: toTimeZone });
|
|
6971
6971
|
}
|
|
6972
6972
|
catch (e) {
|
|
6973
|
-
console.warn(e);
|
|
6973
|
+
console.warn(`Format Date: ${date}`, e);
|
|
6974
6974
|
}
|
|
6975
6975
|
return errorNull ? null : date;
|
|
6976
6976
|
}
|
|
@@ -7009,7 +7009,7 @@ function saveParseDate(date, { from, locale, fromTimeZone }) {
|
|
|
7009
7009
|
return parsedDate;
|
|
7010
7010
|
}
|
|
7011
7011
|
catch (e) {
|
|
7012
|
-
console.warn(e);
|
|
7012
|
+
console.warn(`Parse Date: ${date}`, e);
|
|
7013
7013
|
}
|
|
7014
7014
|
return null;
|
|
7015
7015
|
}
|