.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / configstore / node_modules / is-obj / index.js
1 'use strict';
2 module.exports = function (x) {
3         var type = typeof x;
4         return x !== null && (type === 'object' || type === 'function');
5 };