find - nodef/extra-iterable GitHub Wiki

Find first value passing a test.

Alternatives: find, findRight, findAll. Similar: search, [scan], find.

function find(x, ft)
// x:  an iterable
// ft: test function (v, i, x)
const xiterable = require('extra-iterable');

var x = [1, 2, 3, 4, 5];
xiterable.find(x, v => v % 2 == 0);
// → 2      ^

xiterable.find(x, v => v % 2 == 1);
// → 1   ^

References