apr-find
v3.0.3
Published
Returns the first value in coll that passes an async truth test.
Downloads
1,795
Maintainers
Readme
find
Returns the first value in coll
that passes an async truth test.
Parameters
Examples
import awaitify from 'apr-awaitify';
import find from 'apr-find';
const access = awaitify(fs.access);
const files = [
'file1',
'file2',
'file3'
];
const first = await find(files, async (file) =>
await access(file)
);
Returns Promise
series
Parameters
Returns Promise
limit
Parameters
Returns Promise