-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Sykander edited this page Jul 12, 2020
·
5 revisions
- Async Array
An Array class with additional async array methods.
class AsyncArray extends Array {...}
Filter an iterable object asynchronously
async function asyncFilter(callback, [thisArg]) {...}
Find an item in an iterable object asynchronously
async function asyncFind(callback, [thisArg]) {...}
Find an item's index in an iterable object asynchronously
async function asyncFindIndex(callback, [thisArg]) {...}
Loop over an iterable object asynchronously
async function asyncForEach(callback, [thisArg]) {...}
Map an iterable object asynchronously
async function asyncMap(callback, [thisArg]) {...}