source: Dev/trunk/d3/src/time/year.js @ 76

Last change on this file since 76 was 76, checked in by fpvanagthoven, 14 years ago

d3

File size: 178 bytes
Line 
1d3.time.year = function(date) {
2  return new Date(date.getFullYear(), 0, 1);
3};
4
5d3.time.year.utc = function(date) {
6  return new Date(Date.UTC(date.getUTCFullYear(), 0, 1));
7};
Note: See TracBrowser for help on using the repository browser.