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