mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 08:18:50 +00:00
8 lines
263 B
JavaScript
8 lines
263 B
JavaScript
|
|
function _newArrowCheck(innerThis, boundThis) {
|
||
|
|
if (innerThis !== boundThis) {
|
||
|
|
throw new TypeError("Cannot instantiate an arrow function");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = _newArrowCheck;
|
||
|
|
module.exports["default"] = module.exports, module.exports.__esModule = true;
|