Skip to content

Instantly share code, notes, and snippets.

@BrodaNoel
Last active December 29, 2018 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrodaNoel/8a67863d0c84f5f5711ca85248014cfd to your computer and use it in GitHub Desktop.
Save BrodaNoel/8a67863d0c84f5f5711ca85248014cfd to your computer and use it in GitHub Desktop.
duix.subscribe('user', (user) => {
console.log(user);
});
// or
duix.subscribe('user', (newUserValue, prevUserValue) => {
console.log('New User value is:', newUserValue);
console.log('Previous User value was:', prevUserValue);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment