apr-reject
v3.0.3
Published
The opposite of filter. Removes values that pass an async truth test.
Downloads
45
Maintainers
Readme
reject
The opposite of filter. Removes values that pass an async truth test.
Parameters
Examples
import awaitify from 'apr-awaitify';
import reject from 'apr-reject';
const access = awaitify(fs.access);
const files = [
'file1',
'file2',
'file3'
];
var missing = await reject(files, async (file) =>
await access(file)
);Returns Promise
series
Parameters
Returns Promise
limit
Parameters
Returns Promise
