Checks if the input is an object.
检查输入是否为对象。
The value to check. 要检查的值
True if the value is an object, false otherwise. 如果值为对象则返回 true,否则返回 false
isPlainObject({}) // => trueisPlainObject(new Map()) // => falseisPlainObject(Object.create(null)) // => true Copy
isPlainObject({}) // => trueisPlainObject(new Map()) // => falseisPlainObject(Object.create(null)) // => true
Checks if the input is an object.
检查输入是否为对象。