list of items to map
async function to run on each item (any result is ignored)
a void promise
Same as forEachInSequence
, but returns a list of results.
Similar to a map
but waits for the Promise of the first element to resolve before starting to run the next one.
list of items to map
async function to run on each item, and whose returns are added to the result list
the result of each fn call, in the same order as the items in the list
Generated using TypeDoc
Similar to a
forEach
, but waits for the Promise of the first element to resolve before starting to run the next one.