Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const handler = (event) => {
  2.     //do stuff with the event
  3. }
  4.  
  5. const remover = subscribe(handler)
  6.  
  7. // other stuff happens
  8.  
  9. // ...
  10.  
  11. // no we remove the listener
  12. remover()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement