quran-meta
Version:
Library with meta data and functionality related to Holy Quran
23 lines (21 loc) • 479 B
JavaScript
//#region src/const.ts
const meta = {
numAyahs: 6236,
numSurahs: 114,
numPages: 604,
numJuzs: 30,
numHizbs: 60,
numRubAlHizbs: 240,
numRubsInJuz: 8,
numSajdas: 15,
numRukus: 556,
numManzils: 7
};
/**
* The maximum number of ayahs (verses) that can exist in any surah (chapter) of the Quran.
* This maximum occurs in Surah Al-Baqarah (2), which has 286 ayahs.
*/
const maxAyahsInSurah = 286;
//#endregion
exports.maxAyahsInSurah = maxAyahsInSurah;
exports.meta = meta;