blob: 9b59f58c87f85f2f08224aec3dba9b2ffbdf648c [file] [log] [blame]
function _newArrowCheck(innerThis, boundThis) {
if (innerThis !== boundThis) {
throw new TypeError("Cannot instantiate an arrow function");
}
}
module.exports = _newArrowCheck;