adding missing semi-colon to extendsHelper

necessary to avoid linting errors.
This commit is contained in:
Roger Spratley
2018-09-24 12:37:13 -04:00
committed by GitHub
parent 03af107672
commit 61022daf00
+1 -1
View File
@@ -4079,7 +4079,7 @@ namespace ts {
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
}
};
return function (d, b) {
extendStatics(d, b);