Fix issue semi-colon gets inserted unnecessarily (#5749)

* Fix issue semi-colon gets inserted unnecessarily

* Simplify if condition a bit
This commit is contained in:
Buu Nguyen
2017-05-19 13:54:51 -07:00
committed by Henry Zhu
parent 2788a914f6
commit c474fd48e1
4 changed files with 13 additions and 6 deletions

View File

@@ -17,14 +17,11 @@ var A = function (_B) {
_classCallCheck(this, A);
if (track !== undefined) {
;
var _this = _possibleConstructorReturn(this, (A.__proto__ || Object.getPrototypeOf(A)).call(this, track));
} else {
;
var _this = _possibleConstructorReturn(this, (A.__proto__ || Object.getPrototypeOf(A)).call(this));
}return _possibleConstructorReturn(_this);
}
return _possibleConstructorReturn(_this);
}
return A;