within-one-year

1.0.1 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i within-one-year

Weekly Downloads

0

Version

1.0.1

License

MIT

Last publish

Collaborators

  • kjirou