Skip to content

Convert Gregorian date to Hijri date

js
import { toHijri } from 'taqwim-core-utils'
const gregorianDate = new Date('2024-03-11')

const hijriDate = toHijri(gregorianDate)

output :

{
  "hy": 1445,
  "hm": 9,
  "hd": 1
}

Released under the MIT License.