@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.
- package/index.js +0 -1
- 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)
|