index-of-array

1.0.0 • Public • Published

index-of-array

stable

Find the index of an array (such as a XYZ point) within a two-dimensional array. The interface is the same as Array.prototype.indexOf().

Example

var indexOfArray = require('index-of-array')
 
var array = [
  [ 0, 2, 3 ],
  [ 1, 4, 2 ]
]
 
indexOfArray(array, [0, 2, 3]) 
//=> 0
 
indexOfArray(array, [0, 0])
//=> -1
 
indexOfArray(array, [0, 2, 3], 1)
//=> -1

Install

npm install index-of-array --save

Usage

NPM

idx = indexOfArray(array, search, [fromIndex])

Finds the index of the search array inside the two-dimensional array. Optionally searches starting from the fromIndex value (can be negative to indicate "from end").

See Array.prototype.indexOf() for further details.

See Also

License

MIT, see LICENSE.md for details.

Package Sidebar

Install

npm i index-of-array

Weekly Downloads

4

Version

1.0.0

License

MIT

Last publish

Collaborators

  • mattdesl