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.2.0 to 0.2.1

6

index.js

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

} catch(error) {
return handleError(error, this, txn, () => this.get(id))
return handleError(error, this, txn, () => this.get(id, copy))
}

@@ -184,3 +184,3 @@ },

throw error // if we are in a transaction, the whole transaction probably needs to restart
return handleError(error, this, txn, () => this.put(id, value))
return handleError(error, this, txn, () => this.putSync(id, value))
}

@@ -206,3 +206,3 @@ },

throw error // if we are in a transaction, the whole transaction probably needs to restart
return handleError(error, this, txn, () => this.remove(id))
return handleError(error, this, txn, () => this.removeSync(id))
}

@@ -209,0 +209,0 @@ },

{
"name": "lmdb-store",
"author": "Kris Zyp",
"version": "0.2.0",
"version": "0.2.1",
"description": "Simple, effiecent, scalable data store wrapper for LDMB",

@@ -6,0 +6,0 @@ "license": "MIT",

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