_new_arrow_check.js 275 B

12345678910
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = _newArrowCheck;
  6. function _newArrowCheck(innerThis, boundThis) {
  7. if (innerThis !== boundThis) {
  8. throw new TypeError("Cannot instantiate an arrow function");
  9. }
  10. }