bpms_site/.svn/pristine/07/077161b474fb6b035902c711f990a5a82fe5499e.svn-base
2025-11-02 16:38:49 +03:30

5 lines
166 B
Plaintext

export default function _newArrowCheck(innerThis, boundThis) {
if (innerThis !== boundThis) {
throw new TypeError("Cannot instantiate an arrow function");
}
}