SearchLight
JavaScript searching and filtering with an easy to read interface and a focus on speed and low memory usage.
Installation
NPM
npm install search-lightYarn
yarn add search-lightCDN
<script src="https://unpkg.com/search-light"></script>Usage
ES6
import search from 'search-light';
let matches = search(collection).for('search text')
                                .and('list')
                                .matchesCDN
var matches = window.searchLight
  .search(collection)
  .for('search text')
  .and('list')
  .matchesTODO
Add code style linting- More examples in the documentation
 - Automated testing