
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
array-from-async
Advanced tools
An implementation for Array.fromAsync, which dumps an async iterator into an array.
Array.fromAsync polyfillTC39 is considering a new standard Array.fromAsync convenience
method. This is a standalone polyfill for that.
This polyfill requires ES 2018 (which must include support for async iterators).
In Node:
npm install array-from-async
…then:
import fromAsync from 'array-from-async';
In web browsers or Deno:
import fromAsync from '//unpkg.com/array-from-async';
This is a standalone implementation of the proposed Array.fromAsync
function. Unlike typical polyfills/shims, it does not mutate the global Array
constructor; instead, it exports an equivalent function.
Similarly to Array.from,
fromAsync would be a static method
of the Array built-in class, with one required argument
and two optional arguments: (items, mapfn, thisArg).
But instead of converting an iterable to an array, it converts an async iterable to a promise that will resolve to an array.
async function * f () {
for (let i = 0; i < 4; i++)
yield i * 2;
}
// Resolves to `[0, 2, 4, 6]`.
await fromAsync(f());
For more information, see the Array.fromAsync explainer.
FAQs
An implementation for Array.fromAsync, which dumps an async iterator into an array.
The npm package array-from-async receives a total of 4,511 weekly downloads. As such, array-from-async popularity was classified as popular.
We found that array-from-async demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.