🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

lmdb

Package Overview
Dependencies
Maintainers
3
Versions
197
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lmdb - npm Package Compare versions

Comparing version
3.5.2
to
3.5.3
+8
-8
package.json
{
"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"
}
}

@@ -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