
Product
Rust Support in Socket Is Now Generally Available
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.
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 1,304 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.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.