@nxtedition/rocksdb 10.1.3 → 10.1.4

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 (3) hide show
  1. package/index.js +0 -1
  2. package/iterator.js +0 -4
  3. package/package.json +1 -1
package/index.js CHANGED
@@ -289,7 +289,6 @@ class RocksLevel extends AbstractLevel {
289
289
  } else {
290
290
  resolve({
291
291
  rows,
292
- sequence: binding.iterator_get_sequence(context),
293
292
  finished
294
293
  })
295
294
  }
package/iterator.js CHANGED
@@ -36,10 +36,6 @@ class Iterator extends AbstractIterator {
36
36
  this[kPosition] = 0
37
37
  }
38
38
 
39
- get sequence () {
40
- return binding.iterator_get_sequence(this[kContext])
41
- }
42
-
43
39
  _seek (target) {
44
40
  if (target.length === 0) {
45
41
  throw new Error('cannot seek() to an empty target')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/rocksdb",
3
- "version": "10.1.3",
3
+ "version": "10.1.4",
4
4
  "description": "A low-level Node.js RocksDB binding",
5
5
  "license": "MIT",
6
6
  "main": "index.js",