This function takes a year and returns a Date object with the Gregorian calendar Easter day on that year at midnight.
Date
The function uses a version of the Meeus/Jones/Butcher algorithm published by New Scientist on 30 March 1961.
Year.
Easter date for the provided year.
import { gregorian } from '@pacote/computus'gregorian(2020) // .toLocaleDateString() => '4/12/2020' Copy
import { gregorian } from '@pacote/computus'gregorian(2020) // .toLocaleDateString() => '4/12/2020'
This function takes a year and returns a
Date
object with the Gregorian calendar Easter day on that year at midnight.The function uses a version of the Meeus/Jones/Butcher algorithm published by New Scientist on 30 March 1961.