5 lines
155 B
JavaScript
5 lines
155 B
JavaScript
|
export default (function (innerThis, boundThis) {
|
||
|
if (innerThis !== boundThis) {
|
||
|
throw new TypeError("Cannot instantiate an arrow function");
|
||
|
}
|
||
|
});
|