oar

1.0.0 • Public • Published

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

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i oar

      Weekly Downloads

      2

      Version

      1.0.0

      License

      BSD

      Last publish

      Collaborators

      • enome