namirasoft-core
Advanced tools
Comparing version 1.4.13 to 1.4.14
@@ -41,3 +41,3 @@ "use strict"; | ||
let value_asc = next("Asending").toLowerCase(); | ||
let asc = value_asc != "asc"; | ||
let asc = value_asc === "asc"; | ||
if (value_asc != "asc" && value_asc != "desc") | ||
@@ -44,0 +44,0 @@ ErrorOperation_1.ErrorOperation.throwHTTP(400, `Invalid value '${value_asc}' for SortItem.Asending, Only 'Asc' and 'Desc' are allowed.`); |
@@ -11,3 +11,3 @@ { | ||
"private": false, | ||
"version": "1.4.13", | ||
"version": "1.4.14", | ||
"author": "Amir Abolhasani", | ||
@@ -14,0 +14,0 @@ "license": "MIT", |
@@ -53,3 +53,3 @@ import { BaseMetaColumn } from "./BaseMetaColumn"; | ||
let value_asc = next("Asending").toLowerCase(); | ||
let asc = value_asc != "asc" | ||
let asc = value_asc === "asc" | ||
if (value_asc != "asc" && value_asc != "desc") | ||
@@ -56,0 +56,0 @@ ErrorOperation.throwHTTP(400, `Invalid value '${value_asc}' for SortItem.Asending, Only 'Asc' and 'Desc' are allowed.`); |
Sorry, the diff of this file is not supported yet
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
410083