Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 942 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 942 Bytes

nm-human-date-range

A Node Module for formatting date ranges as a human might write them.

Technologies/Languages

Usage

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