Comparing version 0.0.8 to 0.0.9
/** | ||
* @fileOverview The Entity base class. | ||
*/ | ||
var EventEmitter = require('events').EventEmitter; | ||
var util = require('util'); | ||
@@ -13,4 +15,7 @@ var midd = require('middlewarify'); | ||
* @constructor | ||
* @extends {events.EventEmitter} | ||
*/ | ||
var Entity = module.exports = function(Model, optUdo) { | ||
EventEmitter.call(this); | ||
/** @type {mongoose.Model} The mongoose model */ | ||
@@ -31,2 +36,3 @@ this.Model = Model; | ||
}; | ||
util.inherits(Entity, EventEmitter); | ||
@@ -33,0 +39,0 @@ /** |
{ | ||
"name": "crude", | ||
"description": "Seamless CRUD control operations for node.", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"homepage": "https://github.com/talksession/node-crude", | ||
@@ -6,0 +6,0 @@ "author": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
47196
1226