codexparser 0.1.66 → 0.1.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/abbr.js +20 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codexparser",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.68",
|
|
4
4
|
"description": "This is a Javascript Bible parser and text scanner. It will search through texts and collate all scripture references into an array and parse them into objects, and it will parse passages into objects by book, chapter, verse, and testament. ",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
package/src/abbr.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
const abbrevations = {
|
|
2
2
|
Gen: "Genesis",
|
|
3
|
-
Ge: "Genesis",
|
|
3
|
+
/* Ge: "Genesis", */
|
|
4
4
|
Gn: "Genesis",
|
|
5
5
|
Ex: "Exodus",
|
|
6
6
|
Exo: "Exodus",
|
|
7
7
|
Exod: "Exodus",
|
|
8
8
|
Lev: "Leviticus",
|
|
9
|
-
Le: "Leviticus",
|
|
9
|
+
/* Le: "Leviticus", */
|
|
10
10
|
Lv: "Leviticus",
|
|
11
11
|
Num: "Numbers",
|
|
12
12
|
Nu: "Numbers",
|
|
13
13
|
Nb: "Numbers",
|
|
14
14
|
Nm: "Numbers",
|
|
15
15
|
Deut: "Deuteronomy",
|
|
16
|
-
De: "Deuteronomy",
|
|
16
|
+
/* De: "Deuteronomy", */
|
|
17
17
|
Dt: "Deuteronomy",
|
|
18
18
|
Josh: "Joshua",
|
|
19
19
|
Jos: "Joshua",
|
|
@@ -24,7 +24,7 @@ const abbrevations = {
|
|
|
24
24
|
Jdg: "Judges",
|
|
25
25
|
Ruth: "Ruth",
|
|
26
26
|
Rth: "Ruth",
|
|
27
|
-
Ru: "Ruth",
|
|
27
|
+
/* Ru: "Ruth", */
|
|
28
28
|
"1Sam": "1 Samuel",
|
|
29
29
|
"1sam": "1 Samuel",
|
|
30
30
|
"1SA": "1 Samuel",
|
|
@@ -92,10 +92,10 @@ const abbrevations = {
|
|
|
92
92
|
Ezra: "Ezra",
|
|
93
93
|
Ezr: "Ezra",
|
|
94
94
|
Neh: "Nehemiah",
|
|
95
|
-
Ne: "Nehemiah",
|
|
95
|
+
/* Ne: "Nehemiah", */
|
|
96
96
|
Esth: "Esther",
|
|
97
97
|
Est: "Esther",
|
|
98
|
-
Es: "Esther",
|
|
98
|
+
/* Es: "Esther", */
|
|
99
99
|
Job: "Job",
|
|
100
100
|
Jb: "Job",
|
|
101
101
|
Ps: "Psalms",
|
|
@@ -107,36 +107,36 @@ const abbrevations = {
|
|
|
107
107
|
Prov: "Proverbs",
|
|
108
108
|
Pro: "Proverbs",
|
|
109
109
|
Prv: "Proverbs",
|
|
110
|
-
Pr: "Proverbs",
|
|
110
|
+
/* Pr: "Proverbs", */
|
|
111
111
|
Eccl: "Ecclesiastes",
|
|
112
112
|
Eccles: "Ecclesiastes",
|
|
113
113
|
Eccle: "Ecclesiastes",
|
|
114
114
|
Ecc: "Ecclesiastes",
|
|
115
|
-
Ec: "Ecclesiastes",
|
|
115
|
+
/* Ec: "Ecclesiastes", */
|
|
116
116
|
Qoh: "Ecclesiastes",
|
|
117
117
|
Song: "Song of Songs",
|
|
118
118
|
SOS: "Song of Songs",
|
|
119
119
|
So: "Song of Songs",
|
|
120
120
|
Cant: "Song of Songs",
|
|
121
121
|
Isa: "Isaiah",
|
|
122
|
-
Is: "Isaiah",
|
|
122
|
+
/* Is: "Isaiah", */
|
|
123
123
|
Jer: "Jeremiah",
|
|
124
|
-
Je: "Jeremiah",
|
|
124
|
+
/* Je: "Jeremiah", */
|
|
125
125
|
Lam: "Lamentations",
|
|
126
126
|
La: "Lamentations",
|
|
127
127
|
Ezek: "Ezekiel",
|
|
128
128
|
Eze: "Ezekiel",
|
|
129
129
|
Ezk: "Ezekiel",
|
|
130
130
|
Dan: "Daniel",
|
|
131
|
-
Da: "Daniel",
|
|
131
|
+
/* Da: "Daniel", */
|
|
132
132
|
Dn: "Daniel",
|
|
133
133
|
Hos: "Hosea",
|
|
134
|
-
Ho: "Hosea",
|
|
134
|
+
/* Ho: "Hosea", */
|
|
135
135
|
Joel: "Joel",
|
|
136
136
|
Jl: "Joel",
|
|
137
137
|
Amos: "Amos",
|
|
138
138
|
Am: "Amos",
|
|
139
|
-
Ob: "Obadiah",
|
|
139
|
+
/* Ob: "Obadiah", */
|
|
140
140
|
Obad: "Obadiah",
|
|
141
141
|
Jonah: "Jonah",
|
|
142
142
|
Jnh: "Jonah",
|
|
@@ -144,7 +144,7 @@ const abbrevations = {
|
|
|
144
144
|
Mic: "Micah",
|
|
145
145
|
Mc: "Micah",
|
|
146
146
|
Nah: "Nahum",
|
|
147
|
-
Na: "Nahum",
|
|
147
|
+
/* Na: "Nahum", */
|
|
148
148
|
Hb: "Habakkuk",
|
|
149
149
|
Hab: "Habakkuk",
|
|
150
150
|
Zeph: "Zephaniah",
|
|
@@ -177,7 +177,7 @@ const abbrevations = {
|
|
|
177
177
|
Act: "Acts",
|
|
178
178
|
Ac: "Acts",
|
|
179
179
|
Rom: "Romans",
|
|
180
|
-
Ro: "Romans",
|
|
180
|
+
/* Ro: "Romans", */
|
|
181
181
|
Rm: "Romans",
|
|
182
182
|
"1Cor": "1 Corinthians",
|
|
183
183
|
"1 Cor": "1 Corinthians",
|
|
@@ -200,14 +200,14 @@ const abbrevations = {
|
|
|
200
200
|
"2 co": "2 Corinthians",
|
|
201
201
|
"2co": "2 Corinthians",
|
|
202
202
|
Gal: "Galatians",
|
|
203
|
-
Ga: "Galatians",
|
|
203
|
+
/* Ga: "Galatians", */
|
|
204
204
|
Eph: "Ephesians",
|
|
205
205
|
Ephes: "Ephesians",
|
|
206
206
|
Php: "Philippians",
|
|
207
207
|
Phil: "Philippians",
|
|
208
208
|
Pp: "Philippians",
|
|
209
209
|
Col: "Colossians",
|
|
210
|
-
Co: "Colossians",
|
|
210
|
+
/* Co: "Colossians", */
|
|
211
211
|
"1Thess": "1 Thessalonians",
|
|
212
212
|
"1 Thess": "1 Thessalonians",
|
|
213
213
|
"1Thes": "1 Thessalonians",
|
|
@@ -233,11 +233,11 @@ const abbrevations = {
|
|
|
233
233
|
Titus: "Titus",
|
|
234
234
|
Tt: "Titus",
|
|
235
235
|
Tit: "Titus",
|
|
236
|
-
Ti: "Titus",
|
|
236
|
+
/* Ti: "Titus", */
|
|
237
237
|
Phlm: "Philemon",
|
|
238
238
|
Phm: "Philemon",
|
|
239
239
|
Philem: "Philemon",
|
|
240
|
-
He: "Hebrews",
|
|
240
|
+
/* He: "Hebrews", */
|
|
241
241
|
Hebr: "Hebrews",
|
|
242
242
|
Heb: "Hebrews",
|
|
243
243
|
Jas: "James",
|
|
@@ -275,7 +275,7 @@ const abbrevations = {
|
|
|
275
275
|
Jud: "Jude",
|
|
276
276
|
Jd: "Jude",
|
|
277
277
|
Rev: "Revelation",
|
|
278
|
-
Re: "Revelation",
|
|
278
|
+
/* Re: "Revelation", */
|
|
279
279
|
Mt: "Matthew",
|
|
280
280
|
Mc: "Mark",
|
|
281
281
|
Act: "Acts",
|