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

namirasoft-core

Package Overview
Dependencies
Maintainers
0
Versions
148
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.4.6 to 1.4.7

1

dist/FilterItem.d.ts

@@ -18,2 +18,3 @@ import { FilterItemOperator } from "./FilterItemOperator";

static parse(item: string | null): FilterItem[];
static test(filters: FilterItem[] | null, object: any): boolean;
constructor(table: {

@@ -20,0 +21,0 @@ name: string;

@@ -58,2 +58,10 @@ "use strict";

}
static test(filters, object) {
if (filters) {
if (object)
return true;
return false;
}
return true;
}
constructor(table, column, not, operator, ...values) {

@@ -60,0 +68,0 @@ this.table = table;

2

package.json

@@ -11,3 +11,3 @@ {

"private": false,
"version": "1.4.6",
"version": "1.4.7",
"author": "Amir Abolhasani",

@@ -14,0 +14,0 @@ "license": "MIT",

@@ -76,2 +76,14 @@ import { BaseMetaColumn } from "./BaseMetaColumn";

}
public static test(filters: FilterItem[] | null, object: any): boolean
{
if (filters)
{
// todo
if (object)
return true;
return false;
// todo
}
return true;
}
constructor(table: { name: string; text: string; }, column: { name: string; text: string; }, not: boolean, operator: FilterItemOperator, ...values: string[])

@@ -78,0 +90,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