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.3.6 to 0.3.7

6

lib/QueryBuilder.js

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

isQuery: true
isQuery: function(){return true;}

@@ -421,3 +421,7 @@

, getResource: function() {
return this._rootResource;
}
, find: function(callback) {

@@ -424,0 +428,0 @@ new QueryCompiler({

8

lib/StaticORM.js

@@ -31,4 +31,4 @@ !function(){

, or: function(){
var a = Array.prototype.slice.call(arguments);
, or: function(first){
var a = type.array(first) ? first : Array.prototype.slice.call(arguments);
a.mode = 'or';

@@ -38,4 +38,4 @@ return a;

, and: function(){
var a = Array.prototype.slice.call(arguments);
, and: function(first){
var a = type.array(first) ? first : Array.prototype.slice.call(arguments);
a.mode = 'and';

@@ -42,0 +42,0 @@ return a;

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

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

@@ -26,6 +26,8 @@

new db.country({
code: 'nz'
, name: null
}).save(cb);
db.venue({id: ORM.gt(db.venue(['id'], {id:ORM.gt(0)}))}).find(cb);
return;

@@ -32,0 +34,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