apr-for-each
Advanced tools
Weekly downloads
Readme
Applies the function iteratee
to each item in coll
, in parallel.
Parameters
Examples
import awaitify from 'apr-awaitify';
import forEach from 'apr-for-each';
const writeFile = awaitify(fs.writeFile);
const files = [
'/home/.vimrc',
'/home/.zshrc'
];
await forEach(files, async (file) =>
await writeFile(file, 'boom')
);
Returns Promise
Parameters
Returns Promise
Parameters
Returns Promise
FAQs
Applies the function iteratee to each item in coll, in parallel.
The npm package apr-for-each receives a total of 790 weekly downloads. As such, apr-for-each popularity was classified as not popular.
We found that apr-for-each demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.