remove IIFE on class declarations #288
This commit is contained in:
@@ -16,12 +16,8 @@ var Test = function Test() {
|
||||
this.state = "test";
|
||||
};
|
||||
|
||||
var Foo = (function (Bar) {
|
||||
var Foo = function Foo() {
|
||||
this.state = "test";
|
||||
};
|
||||
var Foo = function Foo() {
|
||||
this.state = "test";
|
||||
};
|
||||
|
||||
_extends(Foo, Bar);
|
||||
|
||||
return Foo;
|
||||
})(Bar);
|
||||
_extends(Foo, Bar);
|
||||
|
||||
Reference in New Issue
Block a user