blob: 6f471ccf9f2115898185231a5b9d55b545ade43c [file] [log] [blame]
module.exports = function (it, Constructor, name) {
if (!(it instanceof Constructor)) {
throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');
} return it;
};