newArrowCheck.js 199 B

123456789
  1. "use strict";
  2. exports.__esModule = true;
  3. exports.default = function (innerThis, boundThis) {
  4. if (innerThis !== boundThis) {
  5. throw new TypeError("Cannot instantiate an arrow function");
  6. }
  7. };