UNPKG

d3

Version:

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

8 lines (6 loc) 211 B
d3.time.month = function(date) { return new Date(date.getFullYear(), date.getMonth(), 1); }; d3.time.month.utc = function(date) { return new Date(Date.UTC(date.getUTCFullYear(), date.getUTCMonth(), 1)); };