UNPKG

berea

Version:

A promise-wrapped library and ORM for using https://scripture.api.bible

14 lines (11 loc) 214 B
/** * enum for kinds of media for the bible (text or audio) * * @readonly * @enum {string} */ const BibleTypes = new Map([ ['text', 'bibles'], ['audio', 'audio-bibles'], ]); module.exports = BibleTypes;