From c4b1da40075532e4f14821b1519ae0ef6665bf1e Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Sat, 26 Jan 2013 20:31:37 -0500 Subject: [PATCH] Fix #13291, no longer need the functionish-regex guard. --- src/core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.js b/src/core.js index d909c8144..9efdc229e 100644 --- a/src/core.js +++ b/src/core.js @@ -407,7 +407,7 @@ jQuery.extend({ if ( obj == null ) { return String( obj ); } - return typeof obj === "object" || typeof obj === "function" ? + return typeof obj === "object" ? class2type[ core_toString.call(obj) ] || "object" : typeof obj; }, -- 2.39.5