Comparing version 1.0.0-alpha.3 to 1.0.0-alpha.4
@@ -46,2 +46,12 @@ /* UNIQORM | ||
/** | ||
* @param {...*} values | ||
* @return {Find} | ||
*/ | ||
Find.prototype.whereAnd = function(values) { | ||
this._where = this._where || []; | ||
this._where.push.apply(this._where, Array.prototype.slice.call(arguments)); | ||
return this; | ||
}; | ||
Find.prototype.params = function(params) { | ||
@@ -140,2 +150,5 @@ this._params = params; | ||
if (self._where) | ||
query.where.apply(query, self._where); | ||
if (orderColumns) { | ||
@@ -142,0 +155,0 @@ query.orderBy.apply(query, orderColumns); |
{ | ||
"name": "uniqorm", | ||
"description": "Easy to use, multi-dialect ORM framework for JavaScript", | ||
"version": "1.0.0-alpha.3", | ||
"version": "1.0.0-alpha.4", | ||
"author": "Panates Ltd.", | ||
@@ -6,0 +6,0 @@ "contributors": [ |
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
45924
1702