Guest User

Untitled

a guest
Feb 18th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class MyClass {
  2. async foo() { console.log(1); }
  3. async bar() { console.log(2); }
  4. }
  5.  
  6. @chainableMethods
  7. class MyClass {
  8. ...
  9. }
  10.  
  11. const myInstance = MyClass();
  12.  
  13. myInstance
  14. .foo()
  15. .bar();
Add Comment
Please, Sign In to add comment