Guest User

Untitled

a guest
Dec 10th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. function makeLogging(f) {
  2.  
  3. function wrapper(...rest) {
  4. console.log(f.name);
  5. console.log(rest);
  6. return f.apply(this, rest);
  7. }
  8.  
  9. return wrapper;
  10. }
  11.  
  12. const task = $('.task');
  13.  
  14. task.on = makeLogging(task.on);
  15.  
  16. task.on('click', () => console.log('hi'));
Add Comment
Please, Sign In to add comment