You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

deep-level-backlog-filters

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deep-level-backlog-filters

Search through object properties recursively at any level.

5.0.0
latest
Source
npmnpm
Version published
Weekly downloads
34
126.67%
Maintainers
1
Weekly downloads
 
Created
Source

Logo

Deep Searching Filter

Searching by `{ ... filters... }` deep in a nested array or nested object.

Table of Contents

About The Project

This project is simple javascript code for deep searching i.e., when input (array or object) is nested then it search for all the elements that matches the keyword and returns filtered data.

Getting Started

Prerequisites

This is basic js code can be implemented in frontend or backend.

Installation

Install NPM packages

 npm i deep-level-backlog-filters

Usage

1- import 'deep-level-backlog-filters'

import deepSearching from 'deep-level-backlog-filters';

2- Input

AttributeDescription
dataarray in which we have to perform searching
filterDatasearch string example {workItem: 'US-', searchingKeyword: '', unScored: true, epicId:10, teamId: 20, status: 'to-do'}
Replacements
{
workItem: 'externalKey',
owner: 'userId',
status: 'progress',
}
let filteredData = deepSearching({workItem: 'US-'}, nestedArray, replacements);

Example

import deepSearching from 'deep-level-backlog-filters';


filteredData = deepSearching( {
    workItem: 'US-',
    searchingKeyword: '',
    unScored: true,
    epicId:10,
    teamId: 20,
    status: 'to-do'
  }, data, {
    workItem: 'externalKey',
    owner: 'userId',
    status: 'progress'
  });

Keywords

deepsearch

FAQs

Package last updated on 07 Apr 2025

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