
Security News
Static vs. Runtime Reachability: Insights from Latio’s On the Record Podcast
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
array-events
Advanced tools
Is an Array extension class which adds asynchronous functions to Array as well as firing events on 'remove', 'add' or 'change'
var EventedArray = require('array-events');
var myArray = new EventedArray();
change : fired any time an element is added or removed
add : fired any time an element is added
remove : fired any time an element is removed
EventedArrays are also Emitters but have an expanded syntax from extended-emitter and the additional .when()
call.
myArray.on('change', function(event){ });
myArray.once('change', function(event){ });
myArray.off('change', function(event){ });
myArray.emit('change'[, arguments]);
forEachEmission : execute serially
myArray.forEachEmission(function(item, index, done){
somethingAsynchronous(function(){
done();
});
}, function(){
//we're all done!
});
forAllEmissions : execute all jobs in parallel
myArray.forAllEmissions(function(item, index, done){
somethingAsynchronous(function(){
done();
});
}, function(){
//we're all done!
});
forAllEmissionsInPool : execute all jobs in parallel up to a maximum #, then queue for later
myArray.forAllEmissionsInPool(poolSize, function(item, index, done){
somethingAsynchronous(function(){
done();
});
}, function(){
//we're all done!
});
contains : does the array contain this element?
new EventedArray(['dog', 'cat', 'mouse']).contains('cat') //returns true;
combine : generate a new array that is the union of the provided arrays
new EventedArray(['dog', 'cat']).combine(['mouse']) //returns a new array ['dog', 'cat', 'mouse'];
erase : generate a new array without the member provided
new EventedArray(['dog', 'cat', 'mouse']).erase('cat') //returns a new array ['dog', 'mouse'];
EventedArray.is : is the provided object an instance of EventedArray
EventedArray.is(new EventedArray()); //returns true
EventedArray.is([]) //returns false
just run
mocha
Enjoy,
-Abbey Hawk Sparrow
FAQs
Events and more for arrays
The npm package array-events receives a total of 5,197 weekly downloads. As such, array-events popularity was classified as popular.
We found that array-events 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.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.