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.4 to 0.3.6

5

lib/ORM.js

@@ -181,2 +181,7 @@ !function(){

, doItAll: function() {
log.wtf('hui');
}
, _initializeDatabases: function(options){

@@ -183,0 +188,0 @@ if (type.object(options)) {

2

package.json
{
"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.4"
, "version" : "0.3.6"
, "homepage" : "https://github.com/eventEmitter/ee-orm"

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

@@ -26,2 +26,8 @@

new db.country({
code: 'nz'
, name: null
}).save(cb);
return;
/*return new db.eventLocasle({

@@ -28,0 +34,0 @@ description : 'ssome text'

@@ -201,2 +201,3 @@

// insert tests

@@ -233,2 +234,10 @@ describe('Inserting Data', function(){

it('with null as a column value should work', function(done){
new db.country({
code: 'nl'
, name: null
}).save(done);
});
it('with a reference fetched using a query', function(done){

@@ -235,0 +244,0 @@ new db.venue({

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