1.0.1 • Published 7 years ago

within-one-year v1.0.1

Weekly downloads
6
License
MIT
Repository
github
Last release
7 years ago

within-one-year

npm version

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