panther

0.0.3 • Public • Published

Panther is a way to search through an array of JSON objects and get returned an array of matching JSON objects.

npm install panther

Example (see also: example.js)

var panther = require('panther');
//data is an array of JSON objects
var data = [{name:'matt', age:'17'}, {name:'oscar', age:'73'}];
var searchTerm = 'matt';
 
panther.search(function(err, items) {
  if (err) {
    console.log(err);
  } else {
    console.log(items); //items is an array of matching JSON objects
  }
}, searchTerm, data);

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i panther

    Weekly Downloads

    5

    Version

    0.0.3

    License

    BSD

    Last publish

    Collaborators

    • mp