@nxtedition/rocksdb 7.1.9 → 7.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -346,7 +346,7 @@ class RocksLevel extends AbstractLevel {
346
346
  const db = this
347
347
 
348
348
  try {
349
- let since = options.since
349
+ let since = (options.since ?? 0) + 1
350
350
  while (true) {
351
351
  const buffer = new Readable({
352
352
  signal: ac.signal,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/rocksdb",
3
- "version": "7.1.9",
3
+ "version": "7.1.10",
4
4
  "description": "A low-level Node.js RocksDB binding",
5
5
  "license": "MIT",
6
6
  "main": "index.js",