# hypnotable-filter

> Filter hypnotable tables

Latest version **0.0.0** (published 2014-02-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install hypnotable-filter
pnpm add hypnotable-filter
yarn add hypnotable-filter
bun add hypnotable-filter
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.0 |
| Published | 2014-02-25 |
| First published | 2014-02-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | David Guttman |
| Maintainers | dguttman |
| Keywords | hypnotable, table, filtering |

## Links

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

## Alternatives

- [@lexical/table](https://npm.io/package/@lexical/table.md) — 3.0M weekly downloads
- [mantine-datatable](https://npm.io/package/mantine-datatable.md) — 98.2K weekly downloads
- [react-native-collapsible-tab-view](https://npm.io/package/react-native-collapsible-tab-view.md) — 70.6K weekly downloads
- [@handsontable/vue3](https://npm.io/package/@handsontable/vue3.md) — 16.1K weekly downloads
- [vuewordcloud](https://npm.io/package/vuewordcloud.md) — 7.2K weekly downloads

## Recent versions

- 0.0.0 (latest) — 2014-02-25

## README

hypnotable-filter
=================

Filter hypnotable tables

    npm i hypnotable-filter

# Example #

```js

var htFilter = require('hypnotable-filter')
var hypnotable = require('hypnotable')

var data = require('./data.json') // [ { "date": ..., "browser": ... }, ...]

var columns = 
  [ {property: 'date'}
  , {property: 'browser'}
  , {property: 'browserVersion', title: 'Browser Version'}
  , {property: 'advanced', title: 'Advanced?'}
  ]

var filter = htFilter(columns)
var ht = hypnotable(columns, filter.add)

document.body.appendChild(filter.el)
document.body.appendChild(ht.el)

data.forEach(function(row) {
  ht.write(row)
})

```

# License #

MIT

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