🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

namirasoft-core

Package Overview
Dependencies
Maintainers
1
Versions
195
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

namirasoft-core - npm Package Compare versions

Comparing version

to
1.3.23

1

dist/FilterItem.d.ts

@@ -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(/(?<!\\);/);

2

package.json

@@ -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