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
I stumbled across a case where format returns the wrong time:
var format = d3.time.format("%Y-%m-%d %H:%I:%S");
console.log(format(new Date("2016-12-08T08:10:58.844Z")));
console.log(format(new Date("2016-12-08T08:11:00.751Z")));
Returns
2016-12-08 10:10:58
2016-12-08 10:10:00
The text was updated successfully, but these errors were encountered:
I stumbled across a case where format returns the wrong time:
Returns
The text was updated successfully, but these errors were encountered: