felixge / node-dateformat

A node.js package for Steven Levithan's excellent dateFormat() function.
MIT License
1.3k stars 156 forks source link

Hermes Invalid Date with dateFormat #186

Open imanshul opened 4 months ago

imanshul commented 4 months ago

When using dateFormat with hermes engine, we are getting Invalid Date as error

let myDate = dateFormat("06 Sep 2024", "dd mmm yyyy");
console.log(myDate);

It gives error while formatting date string to "dd mmm yyyy" format

chase-manning commented 4 months ago

@imanshul Try reading the docs again. It looks like your date string isn't formatted correctly. Think it should be month first right" Like Sep 6 2024.

https://github.com/felixge/node-dateformat/blob/master/Readme.md?plain=1#L40