Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

namirasoft-core

Package Overview
Dependencies
Maintainers
1
Versions
160
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 1.3.22 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc