Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // The desired formatting:
  2.  
  3. function foo(){
  4.     return a()
  5.     .then(console.log);
  6. }
  7.  
  8. //what I get instead:
  9.  
  10. function foo(){
  11.     a()
  12.         .then(console.log);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement