UNPKG

d3

Version:

A small, free JavaScript library for manipulating documents based on data.

8 lines (6 loc) 190 B
d3.time.day = function(date) { return new Date(date.getFullYear(), date.getMonth(), date.getDate()); }; d3.time.day.utc = function(date) { return new Date(~~(date / 864e5) * 864e5); };