federation/gateway/node_modules/core-js/internals/an-instance.js
2020-11-14 16:43:58 +01:00

5 lines
185 B
JavaScript

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