Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

updatable

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

updatable

Updatable data type with listeners

  • 1.0.3
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by50%
Maintainers
1
Weekly downloads
 
Created
Source

npm version Build Status

Updatable

Updatable javascript object with listeners

Install

npm install updatable

Usage

Initialize your Updatable object
const updatable = new Updatable();
const updatable = new Updatable('foo');
const updatable = new Updatable('foo', function(newValue) {
  console.log('Updated value:', newValue); // This will print the updated value
});
Add listeners
updatable.addListener(function(newValue) {
  // newValue will have the new value once the object is updated
});
Update value
updatable.update('bar');

This will call the listeners

Set listener

You can also set a completely new listener, discarding all previous listeners

updatable.setListener(function(newValue) { // This will also remove all previous listeners from the updatable object
  // newValue will have the new value once the object is updated
});
Remove all listeners (from v1.0.3)

You can also set a completely new listener, discarding all previous listeners

updatable.setListener(null);

Changes in v1.0.3
  • Calling setListener(null) will remove all previous listeners. However setListener(undefined) will not remove any listener.

Keywords

FAQs

Package last updated on 15 Sep 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc