2.1.0 ā€¢ Published 2 years ago

@ultirequiem/leap-year v2.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

leap-year

CI codecov deno doc

Custom badge Custom badge Custom badge

Check if a year is a leap year.

Usage

Deno šŸš€

import { isLeapYear } from "https://deno.land/x/leap_year/mod.ts";

isLeapYear(2014); //=> false
isLeapYear(2016); //=> true
isLeapYear("6 October 2006 00:07:00 GMT"); //=> false
isLeapYear("2000"); //=> false
isLeapYear(new Date(2016, 1, 1)); //=> true
isLeapYear("13 December 400 00:07:00 GMT", true); //=> { year: 400, result: true }

Node.js šŸ¢

import { isLeapYear } from "@ultirequiem/leap-year";

Browser šŸ•ø

You can use any CDN that you like.

Eg. ESM ā–¶ SkyPack / script tag ā–¶ JSDelivr.

The API is the same on all this platforms.

API

Autogenerated Documentation šŸš€

CLI Tool

Was done mainly as usage example.

Install

  • Node.js šŸ¦
npm install -g @ultirequiem/leap-year
  • Deno šŸ¦•
deno install https://deno.land/x/leap_year/leap-year.ts

Usage

leap-year "13 October 2020 00:07:00 GMT" 400 345
true
true
false

Or with the verbose flag šŸ‘‡

leap-year "13 October 2020 00:07:00 GMT" 400 345 --verbose # -v
2020 is a leap year.
400 is a leap year.
345 is not a leap year.

Related

Support

Open an Issue, I will check it a soon as possible šŸ‘€

If you want to hurry me up a bit send me a tweet šŸ˜†

Consider supporting me on Patreon if you like my work šŸš€

Don't forget to start the repo ā­

Licence

Licensed under the MIT License.