UNPKG

quran-meta

Version:

Library with meta data and functionality related to Holy Quran

7 lines (6 loc) 246 B
import { HizbQuarterList } from "./lists/hizbList.mjs"; import { checkValidAyahId } from "./validation.mjs"; export function findRubAlHizbByAyahId(ayahId) { checkValidAyahId(ayahId); return HizbQuarterList.findIndex((x) => x > ayahId) - 1; }