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