Skip to content

Convert Hijri date to Gregorian date

js
import { toGregorian } from 'taqwim-core-utils'

const hijriDate = { hy: 1445, hm: 7, hd: 1 }

const gregorianDate = toGregorian(hijriDate)

output :

Sat Jan 13 2024 16:50:08 GMT+0000 (Coordinated Universal Time)

Released under the MIT License.