git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a8b089a
)
Renamed isObject to isObjectLiteral to be more specific.
author
John Resig
<jeresig@gmail.com>
Wed, 11 Nov 2009 04:07:05 +0000
(23:07 -0500)
committer
John Resig
<jeresig@gmail.com>
Wed, 11 Nov 2009 04:07:05 +0000
(23:07 -0500)
src/core.js
patch
|
blob
|
history
diff --git
a/src/core.js
b/src/core.js
index
6eeb9a6
..
addff6b
100644
(file)
--- a/
src/core.js
+++ b/
src/core.js
@@
-280,7
+280,7
@@
jQuery.extend = jQuery.fn.extend = function() {
clone = src;
} else if ( jQuery.isArray(copy) ) {
clone = [];
- } else if ( jQuery.isObject(copy) ) {
+ } else if ( jQuery.isObjectLiteral(copy) ) {
clone = {};
} else {
clone = copy;
@@
-323,7
+323,7
@@
jQuery.extend({
return toString.call(obj) === "[object Array]";
},
- isObject: function( obj ) {
+ isObjectLiteral: function( obj ) {
if ( toString.call(obj) !== "[object Object]" ) {
return false;
}