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) 237 B
import { setStartOfSecond } from './index.js'; /** * Takes a given date and mutates it to the start of the given minute */ export function setStartOfMinute(date) { setStartOfSecond(date); date.setSeconds(0); return date; }