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) 226 B
import { setEndOfMinute } from './index.js'; /** * Takes a given date and mutates it to the end of the given hour */ export function setEndOfHour(date) { setEndOfMinute(date); date.setMinutes(59); return date; }