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

Readme

Keywords

none

Package Sidebar

Install

npm i oar

Weekly Downloads

4

Version

1.0.0

License

BSD

Last publish

Collaborators

  • enome