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