
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.
magic-iterable
Advanced tools
Call a method on all items in an iterable by calling it on the iterable itself
Call a method on all items in an iterable by calling it on the iterable itself
Uses the Proxy API.
$ npm install magic-iterable
import magicIterable from 'magic-iterable';
const x = {
index: 0,
increment(value) {
this.index += value;
return this.index;
}
};
const array = [x, x, x, x];
const magicArray = magicIterable(array);
Array.isArray(magicArray);
//=> true
magicArray.increment(2);
//=> [2, 4, 6, 8];
x.index;
//=> 8
import magicIterable from 'magic-iterable';
// Subscribes to click events for all `<a>` elements
magicIterable(document.querySelectorAll('a')).addEventListener('click', () => {
console.log('Click');
});
Returns a version of iterable that when you call a method on it, it will call that method on all items in the iterable and return an array with the result.
Type: Iterable (For example, an Array)
Iterable where all the items has the method you want to call.
Proxy too)Proxy too)Proxy too)FAQs
Call a method on all items in an iterable by calling it on the iterable itself
We found that magic-iterable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.