Moment: Deprecation warning: moment construction falls back to js Date

983 Views Asked by At

I am receiving that error in the browser console, and this is all I have regarding moment in my system:

moment(slip.gameLineObj.date).format('MMMM Do YYYY, h:mm:ss a')

should I update moment ? or what should I do ?

UPDATE

(slip.gameLineObj.date) returns 2015-06-10T20:05:00.000Z

momentjs version according to bower.json "moment": "2.10.3"

1

There are 1 best solutions below

0
On

You should read this issue on github.

moment construction using a non-iso string is deprecated. What this means is you can safely do:

> moment("2014-04-25T01:32:21.196Z");  // iso string, utc timezone
> moment("2014-04-25T01:32:21.196+0600");  // iso string with timezone
> moment("2014 04 25", "YYYY MM DD"); // string with format

Long story short: Now you should specify format of your date in string or your string with date should be formatted by one of iso formats.