主题
判断值是普通对象。
d.isPlainObject({ x: 0, y: 0 }) // => true d.isPlainObject(Object.create(null)) // => true d.isPlainObject(new Object()) // => true