autoql-fe-utils 1.11.22 → 1.11.23

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.mjs CHANGED
@@ -1811,7 +1811,7 @@ var isISODate = (str) => {
1811
1811
  if (/^\d{4}-\d{2}-\d{2}$/.test(dateString)) {
1812
1812
  return false;
1813
1813
  }
1814
- if (/^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}(\.\d{1,3})?$/.test(dateString)) {
1814
+ if (/^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}(\.\d+)?([+-]\d{2}(:\d{2})?|Z)?$/.test(dateString)) {
1815
1815
  return true;
1816
1816
  }
1817
1817
  if (/\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z/.test(dateString)) {