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