UNPKG

@qntm-code/utils

Version:

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

8 lines (7 loc) 167 B
/** * Takes a given date and mutates it to the start of the given second */ export function setStartOfSecond(date) { date.setMilliseconds(0); return date; }