Your IP : 216.73.216.86


Current Path : /home/emeraadmin/www/node_modules/d3-time/src/
Upload File :
Current File : /home/emeraadmin/www/node_modules/d3-time/src/month.js

import interval from "./interval";

var month = interval(function(date) {
  date.setDate(1);
  date.setHours(0, 0, 0, 0);
}, function(date, step) {
  date.setMonth(date.getMonth() + step);
}, function(start, end) {
  return end.getMonth() - start.getMonth() + (end.getFullYear() - start.getFullYear()) * 12;
}, function(date) {
  return date.getMonth();
});

export default month;
export var months = month.range;