5 lines
164 B
JavaScript
5 lines
164 B
JavaScript
|
export default (function (instance, Constructor) {
|
||
|
if (!(instance instanceof Constructor)) {
|
||
|
throw new TypeError("Cannot call a class as a function");
|
||
|
}
|
||
|
});
|