dda6e04d273016597de054ee02e13b731b25d86c
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / is-object.js
1 module.exports = function (it) {
2   return typeof it === 'object' ? it !== null : typeof it === 'function';
3 };