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) 226 B
import { setStartOfDay } from './index.js'; /** * Takes a given date and mutates it to the start of the given month */ export function setStartOfMonth(date) { setStartOfDay(date); date.setDate(1); return date; }