Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ class MemoryLevel extends AbstractLevel {
permanence: false,
createIfMissing: false,
errorIfExists: false,
has: true,
encodings: { [storeEncoding]: true },
signals: {
// Would have no value here because the operations are synchronous
Expand Down Expand Up @@ -313,6 +314,20 @@ class MemoryLevel extends AbstractLevel {
return keys.map(key => this[kTree].get(key))
}

async _has (key, options) {
const tree = options.snapshot != null
? options.snapshot[kTree]
: this[kTree]
return tree.get(key) !== undefined
}

async _hasMany (keys, options) {
const tree = options.snapshot != null
? options.snapshot[kTree]
: this[kTree]
return keys.map(has, tree)
}

async _del (key, options) {
this[kTree] = this[kTree].remove(key)
}
Expand Down Expand Up @@ -394,3 +409,7 @@ if (typeof process !== 'undefined' && !process.browser && typeof global !== 'und
function isRangeOption (k) {
return rangeOptions.has(k)
}

function has (key) {
return this.get(key) !== undefined
}
Loading