+8
-8
| { | ||
| "name": "lmdb", | ||
| "author": "Kris Zyp", | ||
| "version": "3.5.2", | ||
| "version": "3.5.3", | ||
| "description": "Simple, efficient, scalable, high-performance LMDB interface", | ||
@@ -116,10 +116,10 @@ "license": "MIT", | ||
| "optionalDependencies": { | ||
| "@lmdb/lmdb-darwin-arm64": "3.5.2", | ||
| "@lmdb/lmdb-darwin-x64": "3.5.2", | ||
| "@lmdb/lmdb-linux-arm": "3.5.2", | ||
| "@lmdb/lmdb-linux-arm64": "3.5.2", | ||
| "@lmdb/lmdb-linux-x64": "3.5.2", | ||
| "@lmdb/lmdb-win32-arm64": "3.5.2", | ||
| "@lmdb/lmdb-win32-x64": "3.5.2" | ||
| "@lmdb/lmdb-darwin-arm64": "3.5.3", | ||
| "@lmdb/lmdb-darwin-x64": "3.5.3", | ||
| "@lmdb/lmdb-linux-arm": "3.5.3", | ||
| "@lmdb/lmdb-linux-arm64": "3.5.3", | ||
| "@lmdb/lmdb-linux-x64": "3.5.3", | ||
| "@lmdb/lmdb-win32-arm64": "3.5.3", | ||
| "@lmdb/lmdb-win32-x64": "3.5.3" | ||
| } | ||
| } |
+6
-1
@@ -768,3 +768,8 @@ import { ExtendedIterable } from '@harperfast/extended-iterable'; | ||
| if (store.decoder) { | ||
| value = store.decoder.decode(bytes, lastSize); | ||
| value = store.decoder.decode( | ||
| !store.decoderCopies && bytes.isGlobal | ||
| ? Uint8ArraySlice.call(bytes, 0, lastSize) | ||
| : bytes, | ||
| lastSize, | ||
| ); | ||
| } else if (store.encoding == 'binary') | ||
@@ -771,0 +776,0 @@ value = bytes.isGlobal |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
2542562
0.02%7525
0.13%