.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / an-object.js
1 var isObject = require('../internals/is-object');
2
3 module.exports = function (it) {
4   if (!isObject(it)) {
5     throw TypeError(String(it) + ' is not an object');
6   } return it;
7 };