Returns true if value is a plain object
value
isPlainObject(`text`); // falseisPlainObject(document); // falseisPlainObject({ hello: `there` }); // true Copy
isPlainObject(`text`); // falseisPlainObject(document); // falseisPlainObject({ hello: `there` }); // true
Returns true if
value
is a plain object