apr-some
v3.0.3
Published
Returns true if at least one element in the coll satisfies an async test.
Downloads
5
Maintainers
Readme
some
Returns true if at least one element in the coll
satisfies an async test.
Parameters
Examples
import awaitify from 'apr-awaitify';
import some from 'apr-some';
const access = awaitify(fs.access);
const files = [
'file1',
'file2',
'file3'
];
const oneExist = await some(files, async (file) =>
await access(file)
);
Returns Promise
series
Parameters
Returns Promise
limit
Parameters
Returns Promise