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) 262 B
import { setStartOfMonth } from '../setters/index.js'; /** * Takes an optional date and returns a new Date object set to the start of the given/current month */ export function getStartOfMonth(date = new Date()) { return setStartOfMonth(new Date(date)); }