Socket
Socket
Sign inDemoInstall

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.6.16 to 0.6.17

2

lib/Model.js

@@ -933,3 +933,3 @@ !function(){

case 'reference':
if (this._references[keyName]) {
if (this._references[keyName] && this[keyName].toJSON) {
obj[keyName] = this[keyName].toJSON();

@@ -936,0 +936,0 @@ }

@@ -452,3 +452,3 @@ !function(){

return this.map(function(item){
return item.toJSON();
return item.toJSON ? item.toJSON() : undefined;
}.bind(this));

@@ -455,0 +455,0 @@ }}

@@ -110,3 +110,3 @@ !function(){

return this.map(function(item){
return item.toJSON();
return item.toJSON ? item.toJSON() : undefined;
}.bind(this));

@@ -113,0 +113,0 @@ }

{
"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.6.16"
, "version" : "0.6.17"
, "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