Check if a value is a Plain Old Javascript Object (POJO). i.e. an object created by the {} literal, new Object(), or Object.create(null).
{}
new Object()
Object.create(null)
The value to check
True if the value is a POJO
Check if a value is a Plain Old Javascript Object (POJO). i.e. an object created by the
{}
literal,new Object()
, orObject.create(null)
.