formatjs / handlebars-intl

Handlebars helpers for internationalization.
http://formatjs.io/handlebars/
Other
265 stars 28 forks source link

Invalid date #78

Open max38934 opened 7 years ago

max38934 commented 7 years ago

Hi,

handlebars-intl.js -> formatDate function and similar. This functions accept "date" as parameter and create new Date object like: date = new Date(date);

If "date" will be 2016-08-18 in FF it will work, but it fail in safari, since safari doesn't support "-" in date. Valid format for safari is 2016/08/18. So at the moment it works in one browser, depend on date format.

Regards, Max