An open API service indexing awesome lists of open source software.

https://github.com/elsehow/and-search

a simple "and" search in javascript
https://github.com/elsehow/and-search

Last synced: about 1 year ago
JSON representation

a simple "and" search in javascript

Awesome Lists containing this project

README

          

# and-search

a simple "and" search in javascript.

## example

```javascript
var andsearch = require('and-search')

var notes = [
'very cool note',
'things good and pending',
'my client work',
'assorted notes on trout',
'mighty casey has just struck trout'
]

andsearch(notes, ['Trout', 'casey'])
// ['mighty casey has just struck trout']

```