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

ee-orm

Package Overview
Dependencies
Maintainers
2
Versions
156
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ee-orm - npm Package Compare versions

Comparing version 0.3.25 to 0.3.26

9

lib/Model.js

@@ -297,3 +297,10 @@ !function(){

, _save: function(transaction, noReload, callback) {
, _save: function(transaction, noReload, outerCallback) {
// mkae sure the outer callback gets this model
// as second parameter
var callback = function(err){
if (err) outerCallback(err);
else outerCallback(null, this);
}.bind(this);
// we need to change the status if the transaction succeeds

@@ -300,0 +307,0 @@ transaction.once('commit', function(){

2

package.json
{
"name" : "ee-orm"
, "description" : "An easy to use ORM for node.js. Supports eager loading, complex queries, joins, transactions, complex database clusters & connection pooling."
, "version" : "0.3.25"
, "version" : "0.3.26"
, "homepage" : "https://github.com/eventEmitter/ee-orm"

@@ -6,0 +6,0 @@ , "author" : "Michael van der Weg <michael@eventemitter.com> (http://eventemitter.com/)"

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