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) 184 B
import { setStartOfDay } from '../setters/index.js'; /** * Gets a Date for the start of the given/current day */ export function getToday() { return setStartOfDay(new Date()); }