@leafygreen-ui/date-utils
Version:
LeafyGreen UI Kit Date Utils
10 lines (8 loc) • 360 B
text/typescript
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));
};