month-days-by-year

1.0.1 • Public • Published

month-days-by-year Build Status

Get the number of days for each month in a given year. Honors leap year.

Install

$ npm install --save month-days-by-year

Usage

const monthDaysByYear = require('month-days-by-year');
 
monthDaysByYear(2017);
//=> [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
 
leapYear(2000);
//=> [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]

API

monthDaysByYear(year)

year

Type: string | number

The year from which you want a list of months.

License

MIT © Michael Wuergler

Package Sidebar

Install

npm i month-days-by-year

Weekly Downloads

0

Version

1.0.1

License

MIT

Last publish

Collaborators

  • radiovisual