1.0.0 • Published 4 years ago

find-last v1.0.0

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

find-last Travis CI Build Status

Like Array#find but searches the array backwards.

NPM Badge

Install

npm install find-last

Usage

const findLast = require("find-last");

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

API

findLast(array, predicate)

array

Type: array

The array to search.

predicate

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

The predicate function to call on each item.