Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

isLeapYear

import { isLeapYear } from "https://esm.sh/v135/date-fns@3.6.0/index.d.mts";
@example
// Is 1 September 2012 in the leap year?
const result = isLeapYear(new Date(2012, 8, 1))
//=> true
function isLeapYear<DateType extends Date>(date: DateType | number | string): boolean;
§
isLeapYear<DateType extends Date>(date: DateType | number | string): boolean
[src]

§Type Parameters

§
DateType extends Date
[src]

§Parameters

§
date: DateType | number | string
[src]
  • The date to check

§Return Type

§
boolean
[src]

The date is in the leap year