A Node Module for formatting date ranges as a human might write them.
Use either require
or import
.
Sample:
var humanDateRange = require("nm-human-date-range");
var hDateRange = humanDateRange({
startDate: new Date(2017, 0, 1),
endDate: new Date(2017, 0, 6)
});
Or if you prefer you can play around with RunKit or even play bit with it on StackBlitz