source: Dev/branches/rest-dojo-ui/Demo/d3/src/time/month.js @ 312

Last change on this file since 312 was 312, checked in by jkraaijeveld, 13 years ago
File size: 211 bytes
Line 
1d3.time.month = function(date) {
2  return new Date(date.getFullYear(), date.getMonth(), 1);
3};
4
5d3.time.month.utc = function(date) {
6  return new Date(Date.UTC(date.getUTCFullYear(), date.getUTCMonth(), 1));
7};
Note: See TracBrowser for help on using the repository browser.