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