UNPKG

quran-meta

Version:

Library with meta data and functionality related to Holy Quran

8 lines (7 loc) 269 B
import { SurahList } from "./lists/surahList.mjs"; import { checkValidSurahAyah } from "./validation.mjs"; export function findAyahIdBySurah(surah, ayah) { checkValidSurahAyah(surah, ayah); const [startAyahId] = SurahList[surah]; return startAyahId + ayah - 1; }