massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / is-object.js
1 var isCallable = require('../internals/is-callable');
2
3 module.exports = function (it) {
4   return typeof it == 'object' ? it !== null : isCallable(it);
5 };