blob: bd5f071640b43145275a75dc202304a9e00977af [file] [log] [blame]
// in the browser, LevelAlt doesn't need the
// pre-2.2.0 LevelDB-specific migrations
var toSublevel = function (name, db, callback) {
process.nextTick(function () {
callback();
});
};
var localAndMetaStores = function (db, stores, callback) {
process.nextTick(function () {
callback();
});
};
export default {
toSublevel: toSublevel,
localAndMetaStores: localAndMetaStores
};