Made isObjectLiteral to work correctly with custom objects with empty prototypes.
This commit is contained in:
parent
1ce92e022d
commit
990d9ca1b0
2 changed files with 14 additions and 3 deletions
11
src/core.js
11
src/core.js
|
@ -328,13 +328,20 @@ jQuery.extend({
|
|||
return false;
|
||||
}
|
||||
|
||||
// not own constructor property must be Object
|
||||
if ( obj.constructor
|
||||
&& !hasOwnProperty.call(obj, "constructor")
|
||||
&& !hasOwnProperty.call(obj.constructor.prototype, "isPrototypeOf") ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
//own properties are iterated firstly,
|
||||
//so to speed up, we can test last one if it is own or not
|
||||
|
||||
|
||||
var key;
|
||||
for ( key in obj ) {}
|
||||
|
||||
return !key || hasOwnProperty.call( obj, key );
|
||||
return key === undefined || hasOwnProperty.call( obj, key );
|
||||
},
|
||||
|
||||
isEmptyObject: function( obj ) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue