@webex/common-evented

Class property decorator the adds change events to properties

Usage no npm install needed!

<script type="module">
  import webexCommonEvented from 'https://cdn.skypack.dev/@webex/common-evented';
</script>

README

@webex/common-evented

standard-readme compliant

Class property decorator the adds change events to properties

Install

npm install --save @webex/common-evented

Usage


const evented = require(`@webex/common-evented`);
const Events = require(`ampersand-events`);

class X extends Events {
  @evented
  prop = null
}

const x = new X();
x.on(`change:prop`, () => {
  console.log(x.prop)
  // => 6
});
x.prop = 6;

Maintainers

This package is maintained by Cisco Webex for Developers.

Contribute

Pull requests welcome. Please see CONTRIBUTING.md for more details.

License

© 2016-2020 Cisco and/or its affiliates. All Rights Reserved.