aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.js b/src/core.js
index aa233f883..de82d7742 100644
--- a/src/core.js
+++ b/src/core.js
@@ -1121,7 +1121,7 @@ jQuery.extend({
var ret = [];
// Need to use typeof to fight Safari childNodes crashes
- if ( typeof array != "array" )
+ if ( array.constructor != Array )
for ( var i = 0, length = array.length; i < length; i++ )
ret.push( array[ i ] );
else