empty-object.js 205 B

12345678910111213141516171819202122
  1. func(first, second, third, fourth, fifth, aReallyLongArgumentsListToForceItToBreak, {
  2. // comment
  3. })
  4. func({
  5. // comment
  6. })
  7. func(
  8. {} // comment
  9. )
  10. func(
  11. {}
  12. // comment
  13. )
  14. func(
  15. // comment
  16. {}
  17. )