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

endOfYear

import { endOfYear } from "https://esm.sh/v135/date-fns@3.6.0/index.d.mts";
@example
// The end of a year for 2 September 2014 11:55:00:
const result = endOfYear(new Date(2014, 8, 2, 11, 55, 00))
//=> Wed Dec 31 2014 23:59:59.999
function endOfYear<DateType extends Date>(date: DateType | number | string): DateType;
§
endOfYear<DateType extends Date>(date: DateType | number | string): DateType
[src]

§Type Parameters

§
DateType extends Date
[src]

§Parameters

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

§Return Type

§
DateType
[src]

The end of a year