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) 225 B
import { setStartOfHour } from './index.js'; /** * Takes a given date and mutates it to the start of the given day */ export function setStartOfDay(date) { setStartOfHour(date); date.setHours(0); return date; }