1.0.0 • Published 11 years ago

oar v1.0.0

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

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