namirasoft-core
Advanced tools
Comparing version 1.3.22 to 1.3.23
@@ -7,2 +7,3 @@ import { FilterItemOperator } from "./FilterItemOperator"; | ||
values: string[]; | ||
static parseAll(item: string): FilterItem[]; | ||
static parse(item: string): FilterItem; | ||
@@ -9,0 +10,0 @@ constructor(column: string, not: boolean, operator: FilterItemOperator, ...values: string[]); |
@@ -6,2 +6,5 @@ "use strict"; | ||
class FilterItem { | ||
static parseAll(item) { | ||
return [FilterItem.parse(item)]; | ||
} | ||
static parse(item) { | ||
@@ -8,0 +11,0 @@ let items = item.split(/(?<!\\);/); |
@@ -11,3 +11,3 @@ { | ||
"private": false, | ||
"version": "1.3.22", | ||
"version": "1.3.23", | ||
"author": "Amir Abolhasani", | ||
@@ -14,0 +14,0 @@ "license": "MIT", |
@@ -9,2 +9,7 @@ import { FilterItemOperator } from "./FilterItemOperator"; | ||
public values: string[]; | ||
public static parseAll(item: string): FilterItem[] | ||
{ | ||
// todo impolement | ||
return [FilterItem.parse(item)]; | ||
} | ||
public static parse(item: string): FilterItem | ||
@@ -11,0 +16,0 @@ { |
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
340294
4208