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

data-filter

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

data-filter

Data engine is small data management lib for some sort and filter.

  • 2.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-57.14%
Maintainers
1
Weekly downloads
 
Created
Source

FILTER

Creating new filter

const filterEngine = new Filter(data);
// with instance of sort
const filterEngine = new Filter(data, sort);

Updating data

    filterEngine.setData(newData);

Getting original data

    const originalData = filterEngine.Data;

Adding and updating filters

    const filteredData = filterEngine.update(filter, filter2, filter3 /*Add as many as you need*/);

Removing filters

    const filteredData = filterEngine.removeFilter(filter, 'name' /*As many as you need*/);

Clearing filters

    const filteredData = filterEngine.clearFilters();

Getting data

    const filteredData = filterEngine.getFilteredData();

Getting sort engine from filter

    const sorter = filterEngine.SortEngine;

Keywords

FAQs

Package last updated on 07 Feb 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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