0.0.1 • Published 9 years ago

babel-plugin-transform-empty-statement v0.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
9 years ago

#install

npm i babel-plugin-transform-empty-statement

#use

{
  "plugins": [ "transform-empty-statement" ]
}

##in

// next line is EmptyStatement
;
foo('bar);

##out

// next line is EmptyStatement
( function (a) { return a; } )();
foo('bar);
0.0.1

9 years ago