within-one-year
v1.0.1
Published
A module to judge whether it is within one year
Downloads
1
Readme
within-one-year
A module to judge whether it is within one year
Installation
npm install within-one-year
Usage
const withinOneYear = require('within-one-year');
const from = new Date('2017-01-01T00:00:00.000Z');
console.log(withinOneYear(from, new Date('2018-01-01T00:00:00.000Z'))); // -> true
console.log(withinOneYear(from, new Date('2018-01-01T00:00:00.001Z'))); // -> false
Interpretation of leap years
2016-02-29 + 1 year
=>2017-03-01
2015-03-01 + 1 year
=>2016-03-01
2015-02-28 + 1 year
=>2016-02-28