Returns true if the given date is Easter Monday.
import { isEasterMonday } from "easter-date";const date = new Date("2023-04-10");console.log(isEasterMonday(date)); // true Copy
import { isEasterMonday } from "easter-date";const date = new Date("2023-04-10");console.log(isEasterMonday(date)); // true
Returns true if the given date is Easter Monday.