UNPKG

quran-meta

Version:

Library with meta data and functionality related to Holy Quran

8 lines (7 loc) 242 B
import { JuzList } from "./lists/juzList.mjs"; import { checkValidAyahId } from "./validation.mjs"; export function findJuzByAyahId(ayahId) { checkValidAyahId(ayahId); const juz = JuzList.findIndex((x) => x > ayahId) - 1; return juz; }