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.

  • 1.0.2-rc.2
  • 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);

Updating data

    filterEngine.setData(newData);

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();

WHAT NEXT

Add promise like for big data!

Test all usecases

Set filter-value manually

Keywords

FAQs

Package last updated on 05 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