Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 629 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 629 Bytes

deprecated functionality has been rolled into simple-datejs

date-periodjs

calculates the dates between a start and end date with the given frequency of occurance

##install

$ npm install date-periodjs

$ bower install simple-datejs

##usage

###valid frequencies

0 - one time
1 - daily
2 - weekly
3 - biweekly
4 - monthly

var dpc = require('date-periodjs');

var frequency = 1;
var start = new Date(2015, 6, 20);
var end = new Date(2015, 6, 25);

var dates = dpc.calculatePeriodDates(start, end, frequency);

console.log(dates);