1.0.0 • Published 8 years ago

fuzzy-date v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

fuzzy-date

Like a Date but fuzzy

Returns a Date object +/- the offset milliseconds passed in

Usage

var FuzzyDate = require('fuzzy-date')(86400 * 1000); // offset 1 day

console.log(new FuzzyDate(2015, 12, 18)); // will either be 17th or 19th of December 2015

Multiple Offsets

var FuzzyDateFunction = require('fuzzy-date'),
    FuzzyDate1 = FuzzyDateFunction(86400 * 1000), // offset 1 day
    FuzzyDate2 = FuzzyDateFunction(86400 * 2000); // offset 2 days

console.log(new FuzzyDate1(2015, 12, 18)); // will either be 17th or 19th of December 2015
console.log(new FuzzyDate2(2015, 12, 18)); // will either be 16th or 20th of December 2015