UNPKG

@qntm-code/utils

Version:

A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.

10 lines (9 loc) 218 B
import { setEndOfHour } from './index.js'; /** * Takes a given date and mutates it to the end of the given day */ export function setEndOfDay(date) { setEndOfHour(date); date.setHours(23); return date; }