mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Fixed issue with typeof check - "array" isn't a valid type.
This commit is contained in:
parent
f43516f209
commit
a19a123d89
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user