foia

1.0.1 • Public • Published

foia

Find Object In an Array of objects

installation

npm install foia

usage

return the first index of the found object. Otherwise return -1.

 
var arrayofobjects = [
  { a : 'a' , b : 'b' },
  { c : 'c' , d : 'd' }
];
 
var foundobjindex = foia(arrayofobjects,{ a: 'a' , b : 'b'});
var notfoundobjindex = foia(arrayofobjects,{ a: 'b' , b : 'a'});
 
//foundobjindex : 0
//notfoundobjindex : -1
 

Readme

Keywords

none

Package Sidebar

Install

npm i foia

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • zetae