Skip to content

Commit

Permalink
Add manifest (Level/community#83) (#198)
Browse files Browse the repository at this point in the history
* Upgrade abstract-leveldown from ~6.1.0 to ~6.2.1
* Add manifest
  • Loading branch information
vweevers committed Oct 4, 2019
1 parent 0798dd0 commit e76df6f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion memdown.js
Expand Up @@ -155,7 +155,13 @@ MemIterator.prototype._seek = function (target) {
function MemDOWN () {
if (!(this instanceof MemDOWN)) return new MemDOWN()

AbstractLevelDOWN.call(this)
AbstractLevelDOWN.call(this, {
bufferKeys: true,
snapshots: true,
permanence: false,
seek: true,
clear: true
})

this._store = createRBT(ltgt.compare)
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -28,7 +28,7 @@
"./immediate.js": "./immediate-browser.js"
},
"dependencies": {
"abstract-leveldown": "~6.1.0",
"abstract-leveldown": "~6.2.1",
"functional-red-black-tree": "~1.0.1",
"immediate": "~3.2.3",
"inherits": "~2.0.1",
Expand Down

0 comments on commit e76df6f

Please sign in to comment.