@nicholasmole/find-object-in-array

0.1.0 • Public • Published

Find Object In Array

Find an Object in an array of Objects using property and key

Usage

var findOinA = require('@nicholasmole/find-object-in-array');

  var _array = [
	  {key: 'apple', color: 'red'},
		{key: 'banana', color: 'yellow'},
	];

  var result = findOinA(_array, 'key', 'apple');

// returns {key: 'apple', color: 'red'}
                               

Tests

npm test

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i @nicholasmole/find-object-in-array

    Weekly Downloads

    1

    Version

    0.1.0

    License

    MIT

    Unpacked Size

    3.57 kB

    Total Files

    6

    Last publish

    Collaborators

    • nicholasmole