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) 165 B
/** * Takes a given date and mutates it to the end of the given second */ export function setEndOfSecond(date) { date.setMilliseconds(999); return date; }