Checks if value is a plain JavaScript object, that is, an object created by an object literal, the Object constructor, or one with a prototype of null, i.e. Object.create(null).
value
Object
null
Object.create(null)
true if value is a plain object, else false
true
false
the value to check.
Generated using TypeDoc
Checks if
valueis a plain JavaScript object, that is, an object created by an object literal, theObjectconstructor, or one with a prototype ofnull, i.e.Object.create(null).Returns
trueifvalueis a plain object, elsefalse