ados-rcm 1.0.370 → 1.0.371

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.es.js CHANGED
@@ -5123,7 +5123,10 @@ function Ln(n) {
5123
5123
  }
5124
5124
  function Q0(n) {
5125
5125
  try {
5126
- return n ? new Date(n) : null;
5126
+ if (!n)
5127
+ return null;
5128
+ const r = new Date(n);
5129
+ return isNaN(r.getTime()) ? null : r;
5127
5130
  } catch {
5128
5131
  return null;
5129
5132
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ados-rcm",
3
- "version": "1.0.370",
3
+ "version": "1.0.371",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",