Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement has() and hasMany() #18

Merged
merged 1 commit into from
Jan 5, 2025
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