Skip to content

Commit 61022da

Browse files
authored
adding missing semi-colon to extendsHelper
necessary to avoid linting errors.
1 parent 03af107 commit 61022da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/transformers/es2015.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4079,7 +4079,7 @@ namespace ts {
40794079
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
40804080
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
40814081
return extendStatics(d, b);
4082-
}
4082+
};
40834083
40844084
return function (d, b) {
40854085
extendStatics(d, b);

0 commit comments

Comments
 (0)