UNPKG

@qntm-code/utils

Version:

A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.

11 lines (10 loc) 240 B
import { setEndOfDay } from './index.js'; /** * Takes a given date and mutates it to the end of the given year */ export function setEndOfYear(date) { setEndOfDay(date); date.setMonth(11); date.setDate(31); return date; }