.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / an-instance.js
1 module.exports = function (it, Constructor, name) {
2   if (!(it instanceof Constructor)) {
3     throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');
4   } return it;
5 };