Skip to content

Release 3.3.0

Compare
Choose a tag to compare
@kirillzyusko kirillzyusko released this 26 Oct 15:47
· 19 commits to master since this release
eeed31b
  • deprecate the usage of unsubscribe* methods eeed31b
const handler = (event) => {
    console.log('This device changed: ', event);
};

-subscribeOnThisDeviceChanged(handler);
-unsubscribeOnThisDeviceChanged(handler);

+const subscription = subscribeOnThisDeviceChanged(handler);
+subscription.remove();