1
0
forked from jchomaz/Vulture
Files

5 lines
166 B
JavaScript
Raw Permalink Normal View History

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