Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lmdb-store

Package Overview
Dependencies
Maintainers
1
Versions
147
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lmdb-store - npm Package Compare versions

Comparing version 0.3.8 to 0.3.9

15

index.js

@@ -132,3 +132,14 @@ const fs = require('fs-extra')

txn = readTxn
txn.renew()
try {
txn.renew()
} catch(error) {
console.error(error)
try {
txn.reset()
console.warn('Did reset on read txn')
txn.renew()
} catch(resetError) {
console.error(resetError)
}
}
}

@@ -276,3 +287,3 @@ let result = copy ? txn.getBinaryUnsafe(this.db, id) : txn.getBinary(this.db, id)

}
if (count++ >= options.limit) {
if (++count >= options.limit) {
finished = true

@@ -279,0 +290,0 @@ break

4

package.json
{
"name": "lmdb-store",
"author": "Kris Zyp",
"version": "0.3.8",
"version": "0.3.9",
"description": "Simple, effiecent, scalable data store wrapper for LDMB",

@@ -17,3 +17,3 @@ "license": "MIT",

"dependencies": {
"fs-extra": "^8.0.1",
"fs-extra": "^9.0.0",
"node-lmdb": "kriszyp/node-lmdb#v1-test2"

@@ -20,0 +20,0 @@ },

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc