Guest User

Untitled

a guest
Apr 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //similar lines
  2. doStuff (arg1, arg20, arg3);
  3. doStuff2(arg1, arg2,  arg3);
  4. doStuff3(arg1, arg2,  arg3);
  5.  
  6.  
  7. // multi-line conditions alignment
  8. if(
  9.     something     == 1    &&
  10.     another_thing == null &&
  11.     a_last_thing  != 'foo'
  12. ){
  13.     //...
  14. }
  15.  
  16. // mixed object
  17. viewConfig : {
  18.     forceFit  : true,
  19.     markDirty : true,
  20.     getRowClass : function(...){}
  21. }
Add Comment
Please, Sign In to add comment