_.isPlainObject(value)
Checks if value
is a plain object, that is, an object created by the Object
constructor or one with a [[Prototype]]
of null
.
Arguments
value (*)
: The value to check.
Returns
(boolean)
: Returns true
if value
is a plain object, else false
.