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) 251 B
import { setEndOfDay } from './index.js'; /** * Takes a given date and mutates it to the end of the given week */ export function setEndOfWeek(date) { setEndOfDay(date); date.setDate(date.getDate() + (7 - date.getDay())); return date; }