You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 25, 2021. It is now read-only.
If you use the date.js library export does not work because date.js parse method returns null while Date.parse returns NaN on wrong dates.
So just change line 345
from
return !/.*%/.test(v) && !isNaN(Date.parse(v));
to
return !/.*%/.test(v) && !(Date.parse(v) == null);
thanks for the tool
The text was updated successfully, but these errors were encountered: