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

endOfHour

import { endOfHour } from "https://esm.sh/v135/date-fns@3.6.0/index.d.mts";
@example
// The end of an hour for 2 September 2014 11:55:00:
const result = endOfHour(new Date(2014, 8, 2, 11, 55))
//=> Tue Sep 02 2014 11:59:59.999
function endOfHour<DateType extends Date>(date: DateType | number | string): DateType;
§
endOfHour<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 an hour