UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

6 lines 247 B
import { getEndOfDay } from "./getEndOfDay"; import { getEndOfMonth } from "./getEndOfMonth"; import { isSameDay } from "./isSameDay"; export function isLastDayOfMonth(date) { return !!date && isSameDay(getEndOfDay(date), getEndOfMonth(date)); }