VUE_GabenParadise/node_modules/core-js/internals/an-instance.js
2020-08-10 14:35:19 +02:00

6 lines
185 B
JavaScript

module.exports = function (it, Constructor, name) {
if (!(it instanceof Constructor)) {
throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');
} return it;
};