1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00
Oinktube/node_modules/level-packager/level-packager.js
2022-07-15 11:08:01 -03:00

36 lines
827 B
JavaScript

var levelup = require('levelup')
var encode = require('encoding-down')
function packager (leveldown) {
function Level (location, options, callback) {
if (typeof location === 'function') {
callback = location
} else if (typeof options === 'function') {
callback = options
}
if (!isObject(options)) {
options = isObject(location) ? location : {}
}
return levelup(encode(leveldown(location, options), options), options, callback)
}
function isObject (o) {
return typeof o === 'object' && o !== null
}
['destroy', 'repair'].forEach(function (m) {
if (typeof leveldown[m] === 'function') {
Level[m] = function () {
leveldown[m].apply(leveldown, arguments)
}
}
})
Level.errors = levelup.errors
return Level
}
module.exports = packager