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) 229 B
import { setStartOfMonth } from './index.js'; /** * Takes a given date and mutates it to the start of the given Year */ export function setStartOfYear(date) { setStartOfMonth(date); date.setMonth(0); return date; }