UNPKG

@qntm-code/utils

Version:

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

8 lines (7 loc) 250 B
import { setEndOfWeek } from '../setters/index.js'; /** * Takes an optional date and returns a new Date object set to the end of the given/current week */ export function getEndOfWeek(date = new Date()) { return setEndOfWeek(new Date(date)); }