(original, options)
| 13 | |
| 14 | module.exports = { |
| 15 | getByOriginal (original, options) { |
| 16 | if (options == null) { options = {} } |
| 17 | return fetchJson(`/db/level/${original}/version`, _.merge({}, options)) |
| 18 | }, |
| 19 | |
| 20 | getByIdOrSlug (idOrSlug, options) { |
| 21 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected