.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / is-plain-obj / index.js
1 'use strict';
2 var toString = Object.prototype.toString;
3
4 module.exports = function (x) {
5         var prototype;
6         return toString.call(x) === '[object Object]' && (prototype = Object.getPrototypeOf(x), prototype === null || prototype === Object.getPrototypeOf({}));
7 };