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