export.js 156 B

12345678910111213141516171819
  1. export //comment
  2. {}
  3. export /* comment */ {};
  4. export {
  5. foo // comment
  6. }
  7. export {
  8. // comment
  9. bar
  10. }
  11. export {
  12. fooo, // comment
  13. barr, // comment
  14. }