@nxtedition/rocksdb 10.3.5 → 10.3.6

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 +0 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -153,7 +153,6 @@ class RocksLevel extends AbstractLevel {
153
153
  }
154
154
 
155
155
  _getManySync (keys, options) {
156
- keys = keys.map(key => Buffer.from(key))
157
156
  const ret = binding.db_get_many_sync(this[kContext], keys, options ?? EMPTY)
158
157
  const [sizes, data] = ret
159
158
  return handleMany(sizes, data, options ?? EMPTY)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/rocksdb",
3
- "version": "10.3.5",
3
+ "version": "10.3.6",
4
4
  "description": "A low-level Node.js RocksDB binding",
5
5
  "license": "MIT",
6
6
  "main": "index.js",