0.1.0 • Published 6 years ago

object-select v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

object-select NPM version Build Status Dependency Status Coverage percentage

A selector engine for JavaScript Objects.

Installation

$ npm install --save object-select

Usage

import objectSelect from "object-select";
const objectSelect = require("object-select");

const selector = objectSelect(".test :matches(.test2, .test3)");

selector.find({
  test: {
    test2: ["abc"],
    test3: ["def"]
  }
}); // [['abc'], ['def']]

License

MIT © Myhlamaeus

0.1.0

6 years ago

0.0.3-alpha

10 years ago

0.0.2-alpha

10 years ago

0.0.1-alpha

10 years ago