Use the native isArray whenever possible. See perf test by jdalton here: http://jsperf.com/isarray-vs-other Fixes #6825.
This commit is contained in:
parent
7f18d29287
commit
ea8b1584b1
|
@ -441,7 +441,7 @@ jQuery.extend({
|
|||
return jQuery.type(obj) === "function";
|
||||
},
|
||||
|
||||
isArray: function( obj ) {
|
||||
isArray: Array.isArray || function( obj ) {
|
||||
return jQuery.type(obj) === "array";
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue