1.0.0 • Published 13 years ago
oar v1.0.0
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 should1.0.0
13 years ago