UNPKG

is-june

Version:

returns a 'true' boolean if date is june

74 lines (46 loc) 2.32 kB
# is-june [![NPM version](https://img.shields.io/npm/v/is-june.svg?style=flat)](https://www.npmjs.com/package/is-june) [![NPM monthly downloads](https://img.shields.io/npm/dm/is-june.svg?style=flat)](https://npmjs.org/package/is-june) [![NPM total downloads](https://img.shields.io/npm/dt/is-june.svg?style=flat)](https://npmjs.org/package/is-june) [![Linux Build Status](https://img.shields.io/travis/TJC-js/is-june.svg?style=flat&label=Travis)](https://travis-ci.org/TJC-js/is-june) > returns a 'true' boolean if date is june Please consider following this project's author, [Tim Cane](https://github.com/timcane), and consider starring the project to show your :heart: and support. ## Install Install with [npm](https://www.npmjs.com/): ```sh $ npm install --save is-june ``` ## Usage ```js var isJune = require('is-june'); console.log(isJune(new Date("2021-06-06"))); //=> true console.log(isJune(new Date("2021-02-02"))); //=> false console.log(isJune('not a date')); //=> false ``` ## About <details> <summary><strong>Contributing</strong></summary> Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new). </details> <details> <summary><strong>Running Tests</strong></summary> Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command: ```sh $ npm install && npm test ``` </details> <details> <summary><strong>Building docs</strong></summary> _(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_ To generate the readme, run the following command: ```sh $ npm install -g verbose/verb#dev verb-generate-readme && verb ``` </details> ### Related projects ### Contributors ### Author **Tim Cane** + [GitHub Profile](https://github.com/timcane) + [Twitter Profile](https://twitter.com/timcane) ### License Copyright © 2021, [Tim Cane](https://github.com/timcane). Released under the [MIT License](LICENSE). *** _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on January 15, 2021._