1.0.0 • Published 4 years ago

find-last-index v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

find-last-index Travis CI Build Status

Like Array#findIndex but searches the array backwards.

NPM Badge

Install

npm install find-last-index

Usage

const findLastIndex = require("find-last-index");

findLastIndex(["a", "b", "bba", "cc", "d"], value => value.includes("a"));
//=> 2

API

findLastIndex(array, predicate)

array

Type: array

The array to search.

predicate

Type: (item, index, array) => boolean

The predicate function to call on each item.