UNPKG

easter-date

Version:

Calculate the date of Easter for a given year

11 lines (10 loc) 267 B
/** * Returns the date of Good Friday for a given year. * @param year */ export declare function getGoodFriday(year: number): Date; /** * Returns true if the given date is Good Friday. * @param date */ export declare function isGoodFriday(date: Date): boolean;