Fix over-parenthesizing of function expressions

This commit is contained in:
Amjad Masad
2015-12-24 14:55:51 -08:00
parent 15760dfed2
commit 0d8e5a9e86
78 changed files with 213 additions and 187 deletions

View File

@@ -1,4 +1,4 @@
var Test = (function () {
var Test = function () {
function Test() {
babelHelpers.classCallCheck(this, Test);
}
@@ -10,4 +10,4 @@ var Test = (function () {
}
}]);
return Test;
})();
}();