UNPKG

@qntm-code/utils

Version:

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

12 lines (11 loc) 302 B
import { setEndOfDay, setStartOfMonth } from './index.js'; /** * Takes a given date and mutates it to the end of the given month */ export function setEndOfMonth(date) { setStartOfMonth(date); setEndOfDay(date); date.setMonth(date.getMonth() + 1); date.setDate(0); return date; }