newArrowCheck.js 309 B

12345678910111213
  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. }
  11. //# sourceMappingURL=newArrowCheck.js.map