# Bibles

# DISCLAIMER
If you choose to use the ESV or NKJV you MUST obtain a license from them. We are not liable for any failure to obey the law.

# Usage
```js
  import * as bible from 'bibles-js'

  const reference = 'Psalms 51:7'
  const verse = bible.get(reference)

  const multiLineReference = '1 John 1:3-3'
  const verses = bible.get(multiLineReference)
```
