mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
Add isObjectLike and isHostObject checks to _.isPlainObject.
This commit is contained in:
@@ -8249,7 +8249,7 @@
|
||||
* // => true
|
||||
*/
|
||||
function isPlainObject(value) {
|
||||
if (!(value && objToString.call(value) == objectTag)) {
|
||||
if (!isObjectLike(value) || objToString.call(value) != objectTag || isHostObject(value)) {
|
||||
return false;
|
||||
}
|
||||
var proto = typeof value.constructor == 'function'
|
||||
|
||||
Reference in New Issue
Block a user