month-days-by-year
v1.0.1
Published
Get the number of days for each month in a given year.
Maintainers
Readme
month-days-by-year 
Get the number of days for each month in a given year. Honors leap year.
Install
$ npm install --save month-days-by-yearUsage
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
