-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
Epic: add has()
and hasMany()
#142
Labels
enhancement
New feature or request
Comments
vweevers
added a commit
to Level/supports
that referenced
this issue
Dec 27, 2024
Ref: Level/community#142 Category: addition
This was referenced Dec 27, 2024
vweevers
added a commit
to Level/supports
that referenced
this issue
Dec 27, 2024
Ref: Level/community#142 Category: addition
vweevers
added a commit
to Level/abstract-level
that referenced
this issue
Dec 27, 2024
Adds two methods: ```js await db.put('love', 'u') await db.has('love') // true await db.hasMany(['love', 'hate']) // [true, false] ``` Ref: Level/community#142 Category: addition
vweevers
added a commit
to Level/abstract-level
that referenced
this issue
Dec 27, 2024
Adds two methods: ```js await db.put('love', 'u') await db.has('love') // true await db.hasMany(['love', 'hate']) // [true, false] ``` Ref: Level/community#142 Category: addition
vweevers
added a commit
to Level/abstract-level
that referenced
this issue
Dec 29, 2024
Adds two methods: ```js await db.put('love', 'u') await db.has('love') // true await db.hasMany(['love', 'hate']) // [true, false] ``` Ref: Level/community#142 Category: addition
vweevers
added a commit
to Level/abstract-level
that referenced
this issue
Dec 29, 2024
vweevers
added a commit
to Level/classic-level
that referenced
this issue
Dec 29, 2024
Adds support of two methods: ```js await db.put('love', 'u') await db.has('love') // true await db.hasMany(['love', 'hate']) // [true, false] ``` Depends on a pending `abstract-level` release, and lacks support of explicit snapshots which should be implemented after #110 lands. Ref: Level/community#142
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Per the feature request of #106. Will add two methods:
Tasks:
level-supports
(6.2.0): Addhas
property supports#33abstract-level
(semver-minor): Implementhas()
andhasMany()
abstract-level#96memory-level
(semver-minor): implementhas()
andhasMany()
classic-level
(semver-minor): Implementhas()
andhasMany()
classic-level#111browser-level
(semver-minor): implementhas()
andhasMany()
many-level
(semver-minor): implementhas()
andhasMany()
rave-level
(semver-minor): implementhas()
andhasMany()
The text was updated successfully, but these errors were encountered: