UNPKG

@leafygreen-ui/date-utils

Version:
8 lines (6 loc) 266 B
import { setToUTCMidnight } from '../setToUTCMidnight'; import { setUTCDate } from '../setUTCDate'; /** Returns midnight on the fist day of the provided month */ export const getFirstOfUTCMonth = (date: Date) => { return setToUTCMidnight(setUTCDate(date, 1)); };