Skip to content

Commit

Permalink
jquery core: closes #1480, isFunction is even tougher.
Browse files Browse the repository at this point in the history
  • Loading branch information
flesler committed May 14, 2008
1 parent d524c7e commit b13a961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.js
Expand Up @@ -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
Expand Down

0 comments on commit b13a961

Please sign in to comment.