count-days-in-month

1.0.0 • Public • Published

count-days-in-month

NPM version Bower version Build Status Coverage Status Dependency Status devDependency Status

Get the number of days in a given month

countDaysInMonth(2016, 11); //=> 31
countDaysInMonth(2016, 8); //=> 30

Installation

Package managers

npm

npm install count-days-in-month

bower

bower install count-days-in-month

API

countDaysInMonth(fullYear, zerBasedMonth)

fullYear: Number of full year, for example 2016
zeroBasedMonth: Number of month, zero based (0, 1, ... 11)
Return: Number of days

It returns a number of days in the month, considering the year is whether a leap year or not.

countDaysInMonth(2015, 1); //=> 28
countDaysInMonth(2016, 1); //=> 29

License

Copyright (c) 2016 Shinnosuke Watanabe

Licensed under the MIT License.

Package Sidebar

Install

npm i count-days-in-month

Weekly Downloads

324

Version

1.0.0

License

MIT

Last publish

Collaborators

  • shinnn