iwmlib/lib/3rdparty/systemjs/babel-helpers/newArrowCheck.js

5 lines
155 B
JavaScript

export default (function (innerThis, boundThis) {
if (innerThis !== boundThis) {
throw new TypeError("Cannot instantiate an arrow function");
}
});