aboutsummaryrefslogtreecommitdiff
path: root/node_modules/@babel/runtime/helpers/newArrowCheck.js
blob: 9b59f58c87f85f2f08224aec3dba9b2ffbdf648c (plain)
1
2
3
4
5
6
7
function _newArrowCheck(innerThis, boundThis) {
  if (innerThis !== boundThis) {
    throw new TypeError("Cannot instantiate an arrow function");
  }
}

module.exports = _newArrowCheck;