Async array methods in JavaScript
npm install async-array-prototype






> This repository contains the asynchronous version of most array methods in JavaScript.
!GitHub stars
!GitHub forks
!GitHub watchers
!GitHub followers
!GitHub code size in bytes
!GitHub repo size
!GitHub language count
!GitHub top language
!GitHub last commit
First install or download this repository.
``sh
npm i async-array-prototype
yarn add async-array-prototype
`
Then either import the whole package or include a new script tag with src pointing to your downloaded and extracted repository.
You can also include the whole package from unpkg.com
`html`
Then
`javascript`
import 'async-array';
Once imported, the asyncronous methods are available on the Array.prototype and you can use them with any array.
1. Async everyfilter
2. Async find
3. Async findIndex
4. Async forEach
5. Async map
6. Async some
7. Async reduce
8. Async
Of course you can live on the edge and use the raw ES7 version of the methods by importing them from the lib` folder.
This way you will not extend the array prototype and the actual usage is left to you.
MIT
---
---