async array helpers
npm install assync




assync
======
Asynchronous, parallel .map(), .filter(), and more. Works really well with async/await.
Example
``js
const {HTTP} = require('http-call')
const {assync} = require('assync')
async function main () {
const output = await assync(['jdxcode']) // start with github user 'jdxcode'
.map(userID => )
}
main()
``