bpms_site/.svn/pristine/01/01a4709fd953fc27be24eaafa4127d3f92d86123.svn-base
2025-11-02 16:38:49 +03:30

8 lines
263 B
Plaintext

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;