# nv-set-filter

> set nest filter

Latest version **1.0.1** (published 2021-04-06) · ISC license · 0 weekly downloads

## Install

```sh
npm install nv-set-filter
pnpm add nv-set-filter
yarn add nv-set-filter
bun add nv-set-filter
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2021-04-06 |
| First published | 2021-04-06 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 1.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | ihgazni2 |
| Keywords | set, filter |

## Links

- npm: https://www.npmjs.com/package/nv-set-filter
- npm.io page: https://npm.io/package/nv-set-filter

## Dependencies (1)

- [nv-set-basic](https://npm.io/package/nv-set-basic.md) ^1.0.3

## Alternatives

- [jsforce](https://npm.io/package/jsforce.md) — 851.2K weekly downloads
- [react-native-qrcode-svg](https://npm.io/package/react-native-qrcode-svg.md) — 693.5K weekly downloads
- [@salesforce/plugin-data](https://npm.io/package/@salesforce/plugin-data.md) — 394.9K weekly downloads
- [@backstage/plugin-search-common](https://npm.io/package/@backstage/plugin-search-common.md) — 308.5K weekly downloads
- [@chain-registry/types](https://npm.io/package/@chain-registry/types.md) — 38.4K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2021-04-06

## README

nv-set-filter
============
- nv-set-filter is a simple util for nested-filter-on-set 



install
=======
- npm install nv-set-filter

usage
=====

example
-------


    var {filter} = require("nv-set-filter")
    var st = new Set([1,new Set([2,3]),4,new Set([5,6,7]),8])
    > st
    Set(5) { 1, Set(2) { 2, 3 }, 4, Set(3) { 5, 6, 7 }, 8 }
    >
    
    var nst = filter(st,r=>r%2)
    
    > nst
    Set(3) { 1, Set(1) { 3 }, Set(2) { 5, 7 } }


APIS
====
- set\_fltr.filter(st)


LICENSE
=======
- ISC

---
_Source: https://npm.io/package/nv-set-filter · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
