mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
jquery core: closes #1480, isFunction is even tougher.
This commit is contained in:
parent
d524c7eecc
commit
b13a961ff5
@ -615,7 +615,7 @@ jQuery.extend({
|
||||
// See test/unit/core.js for details concerning this function.
|
||||
isFunction: function( fn ) {
|
||||
return !!fn && typeof fn != "string" && !fn.nodeName &&
|
||||
fn.constructor != Array && /function/i.test( fn + "" );
|
||||
fn.constructor != Array && /^[\s[]?function/.test( fn + "" );
|
||||
},
|
||||
|
||||
// check if an element is in a (or is an) XML document
|
||||
|
Loading…
Reference in New Issue
Block a user