ephrem
Version:
Ephrem is a light-weight API wrapper for API.Bible, built using NodeJS and Typescript. Ephrem validates bible references and fetches scripture text corresponding to the references.
107 lines • 2.17 kB
JavaScript
const BOOK_IDs = {
"1CH": "Chronicles_1",
"1CO": "Corinthians_1",
"1ES": "Esdras_1_Greek",
"1JN": "John_1",
"1KI": "Kings_1",
"1MA": "Maccabees_1",
"1MQ": "Meqabyan_1",
"1PE": "Peter_1",
"1SA": "Samuel_1",
"1TH": "Thessalonians_1",
"1TI": "Timothy_1",
"2BA": "Baruch_2_Apocalypse",
"2CH": "Chronicles_2",
"2CO": "Corinthians_2",
"2ES": "Esdras_2_Latin",
"2JN": "John_2",
"2KI": "Kings_2",
"2MA": "Maccabees_2",
"2MQ": "Meqabyan_2",
"2PE": "Peter_2",
"2SA": "Samuel_2",
"2TH": "Thessalonians_2",
"2TI": "Timothy_2",
"3JN": "John_3",
"3MA": "Maccabees_3",
"3MQ": "Meqabyan_3",
"4BA": "Baruch_4",
"4MA": "Maccabees_4",
"5EZ": "Ezra_5",
"6EZ": "Ezra_6",
ACT: "Acts",
AMO: "Amos",
BAR: "Baruch",
BEL: "Bel_and_the_Dragon",
COL: "Colossians",
DAG: "Daniel_Greek",
DAN: "Daniel_Hebrew",
DEU: "Deuteronomy",
ECC: "Ecclesiastes",
ENO: "Enoch",
EPH: "Ephesians",
ESG: "Esther_Greek",
EST: "Esther_Hebrew",
EXO: "Exodus",
EZA: "Ezra_Apocalypse",
EZK: "Ezekiel",
EZR: "Ezra",
GAL: "Galatians",
GEN: "Genesis",
HAB: "Habakkuk",
HAG: "Haggai",
HEB: "Hebrews",
HOS: "Hosea",
ISA: "Isaiah",
JAS: "James",
JDG: "Judges",
JDT: "Judith",
JER: "Jeremiah",
JHN: "John",
JOB: "Job",
JOL: "Joel",
JON: "Jonah",
JOS: "Joshua",
JUB: "Jubilees",
JUD: "Jude",
LAM: "Lamentations",
LAO: "Letter_to_the_Laodiceans",
LBA: "Letter_of_Baruch",
LEV: "Leviticus",
LJE: "Letter_of_Jeremiah",
LUK: "Luke",
MAL: "Malachi",
MAN: "Prayer_of_Manasseh",
MAT: "Matthew",
MIC: "Micah",
MRK: "Mark",
NAM: "Nahum",
NEH: "Nehemiah",
NUM: "Numbers",
OBA: "Obadiah",
ODA: "Odae",
PHM: "Philemon",
PHP: "Philippians",
PRO: "Proverbs",
PS2: "Psalm_151",
PS3: "Psalms_152_155",
PSA: "Psalms",
PSS: "Psalms_of_Solomon",
REP: "Reproof",
REV: "Revelation",
ROM: "Romans",
RUT: "Ruth",
S3Y: "Song_of_the_3_Young_Men",
SIR: "Sirach",
SNG: "Song_of_Songs",
SUS: "Susanna",
TIT: "Titus",
TOB: "Tobit",
WIS: "Wisdom_of_Solomon",
ZEC: "Zechariah",
ZEP: "Zephaniah"
};
export {
BOOK_IDs
};
//# sourceMappingURL=book-ids.js.map