Comparing version 0.0.5 to 0.0.6
@@ -22,9 +22,9 @@ /** | ||
// Create primitive middlewares | ||
midd.make(this, 'create', this._create); | ||
midd.make(this, 'read', this._read); | ||
midd.make(this, 'readOne', this._readOne); | ||
midd.make(this, 'readLimit', this._readLimit); | ||
midd.make(this, 'update', this._update); | ||
midd.make(this, 'delete', this._delete ); | ||
midd.make(this, 'count', this._count); | ||
midd.make(this, 'create', this._create.bind(this)); | ||
midd.make(this, 'read', this._read.bind(this)); | ||
midd.make(this, 'readOne', this._readOne.bind(this)); | ||
midd.make(this, 'readLimit', this._readLimit.bind(this)); | ||
midd.make(this, 'update', this._update.bind(this)); | ||
midd.make(this, 'delete', this._delete.bind(this)); | ||
midd.make(this, 'count', this._count.bind(this)); | ||
}; | ||
@@ -31,0 +31,0 @@ |
{ | ||
"name": "crude", | ||
"description": "Seamless CRUD control operations for node.", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"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
46753