UNPKG

@leafygreen-ui/date-utils

Version:
10 lines (8 loc) 360 B
import { getDaysInUTCMonth } from '../getDaysInUTCMonth'; import { setToUTCMidnight } from '../setToUTCMidnight'; import { setUTCDate } from '../setUTCDate'; /** Returns the last day in a given month */ export const getLastOfMonth = (date: Date) => { const daysInMonth = getDaysInUTCMonth(date); return setToUTCMidnight(setUTCDate(date, daysInMonth)); };