github-pages-deploy-action/node_modules/core-js-pure/internals/an-instance.js
2020-03-06 22:45:40 -05:00

6 lines
185 B
JavaScript

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