quran-meta
Version:
Library with meta data and functionality related to Holy Quran
24 lines (21 loc) • 813 B
text/typescript
import { findAyahIdBySurah } from "./findAyahIdBySurah"
import { PageList } from "./lists/pageList"
import { AyahId, AyahNo, Page, Surah } from "./types"
import { binarySearch } from "./utils"
import { checkValidSurah } from "./validation"
/**
* Determines if an ayah is the first ayah on its page in the Quran
* @param surah - The surah number (1-114)
* @param ayah - The ayah number within the surah
* @returns The page number if the ayah is first on its page, -1 otherwise
* @throws Error If surah number is invalid
*/
export function isSurahAyahPageFirst(
surah: Surah,
ayah: AyahNo
): Page | number {
checkValidSurah(surah)
const ayahId: AyahId = findAyahIdBySurah(surah, ayah)
return binarySearch(PageList, ayahId) as Page | -1
// return PageList.findIndex((x: AyahId) => x == ayahId)
}