oar
v1.0.0
Published
Observable Array
Downloads
4
Readme
Oar (observable/evented array)
Small module that overwrites all the mutatable array methods and fires the related event.
Mutable array methods in Javascript
Example
var a = oar();
or
var a = oar(['one', 'two']);
a.push('three');
a.on('push', function (updated_array) {
console.log(update_array); // ['one', 'two', 'three'];
});
Tests
mocha specs.js -R should