codexparser 0.0.5 → 0.0.6

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/abbr.js +69 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codexparser",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
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
@@ -149,34 +149,101 @@ const abbrevations = {
149
149
  Mal: "Malachi",
150
150
  Ml: "Malachi",
151
151
  Matt: "Matthew",
152
+ Mt: "Matthew",
152
153
  Mark: "Mark",
154
+ Mrk: "Mark",
155
+ Mar: "Mark",
156
+ Mk: "Mark",
157
+ Mr: "Mark",
153
158
  Luke: "Luke",
159
+ Luk: "Luke",
160
+ Lk: "Luke",
154
161
  John: "John",
162
+ Joh: "John",
163
+ Jhn: "John",
164
+ Jn: "John",
155
165
  Acts: "Acts",
156
166
  Act: "Acts",
167
+ Ac: "Acts",
157
168
  Rom: "Romans",
158
- R: "Romans",
169
+ Ro: "Romans",
170
+ Rm: "Romans",
159
171
  "1Cor": "1 Corinthians",
172
+ "1 Cor": "1 Corinthians",
173
+ "1 Co": "1 Corinthians",
174
+ "1 Cor": "1 Corinthians",
175
+ "1 Co": "1 Corinthians",
176
+ "1Co": "1 Corinthians",
160
177
  "2Cor": "2 Corinthians",
178
+ "2 Cor": "2 Corinthians",
179
+ "2 Co": "2 Corinthians",
180
+ "2Co": "2 Corinthians",
181
+ "2Cor": "2 Corinthians",
182
+ "2 Cor": "2 Corinthians",
161
183
  Gal: "Galatians",
184
+ Ga: "Galatians",
162
185
  Eph: "Ephesians",
186
+ Ephes: "Ephesians",
163
187
  Phil: "Philippians",
188
+ Php: "Philippians",
189
+ Pp: "Philippians",
164
190
  Col: "Colossians",
191
+ Co: "Colossians",
165
192
  "1Thess": "1 Thessalonians",
193
+ "1 Thess": "1 Thessalonians",
194
+ "1 Th": "1 Thessalonians",
195
+ "1Th": "1 Thessalonians",
196
+ "2Thess": "2 Thessalonians",
197
+ "2 Thess": "2 Thessalonians",
198
+ "2 Th": "2 Thessalonians",
199
+ "2Th": "2 Thessalonians",
166
200
  "2Thess": "2 Thessalonians",
167
201
  "1Tim": "1 Timothy",
202
+ "1 Ti": "1 Timothy",
203
+ "1 Ti": "1 Timothy",
204
+ "1Tim": "1 Timothy",
205
+ "2Tim": "2 Timothy",
206
+ "2 Ti": "2 Timothy",
207
+ "2 Ti": "2 Timothy",
168
208
  "2Tim": "2 Timothy",
169
209
  Titus: "Titus",
210
+ Tt: "Titus",
211
+ Tit: "Titus",
212
+ Ti: "Titus",
170
213
  Phlm: "Philemon",
214
+ Phm: "Philemon",
215
+ Phile: "Philemon",
216
+ Ph: "Philemon",
217
+ Hebr: "Hebrews",
171
218
  Heb: "Hebrews",
219
+ He: "Hebrews",
172
220
  Jas: "James",
221
+ Jm: "James",
222
+ James: "James",
173
223
  "1Pet": "1 Peter",
224
+ "1 Pe": "1 Peter",
225
+ "1 Pe": "1 Peter",
226
+ "1Pet": "1 Peter",
227
+ "2Pet": "2 Peter",
228
+ "2 Pe": "2 Peter",
229
+ "2 Pe": "2 Peter",
174
230
  "2Pet": "2 Peter",
175
231
  "1John": "1 John",
232
+ "1 Jo": "1 John",
233
+ "1 Jo": "1 John",
234
+ "1John": "1 John",
235
+ "2John": "2 John",
236
+ "2 Jo": "2 John",
237
+ "2 Jo": "2 John",
176
238
  "2John": "2 John",
239
+ "2 John": "2 John",
177
240
  "3John": "3 John",
241
+ "3 John": "3 John",
178
242
  Jude: "Jude",
243
+ Jud: "Jude",
244
+ Jd: "Jude",
179
245
  Rev: "Revelation",
246
+ Re: "Revelation",
180
247
  Mt: "Matthew",
181
248
  Mc: "Mark",
182
249
  L: "Luke",
@@ -206,4 +273,4 @@ const abbrevations = {
206
273
  Ap: "Revelation",
207
274
  }
208
275
 
209
- module.exports = abbrevations
276
+ module.exports = abbrevations