ts-repository-fluent
Advanced tools
Comparing version 0.1.4 to 0.1.5
{ | ||
"name": "ts-repository-fluent", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"description": "A basic data repository framework for Typescript. Includes a fluent-style query interface.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -185,3 +185,3 @@ 'use strict' | ||
} | ||
else if (Array.isArray(pValue) && pOperator == Operator.NOT_Equals) | ||
else if (Array.isArray(pValue) && (pOperator == Operator.NOT_Equals || pOperator == Operator.NOT_IN)) | ||
{ | ||
@@ -188,0 +188,0 @@ if (!pValue.length) |
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
40763