Skip to content

Commit c4b1da4

Browse files
committed
Fix #13291, no longer need the functionish-regex guard.
1 parent 47a6f52 commit c4b1da4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ jQuery.extend({
407407
if ( obj == null ) {
408408
return String( obj );
409409
}
410-
return typeof obj === "object" || typeof obj === "function" ?
410+
return typeof obj === "object" ?
411411
class2type[ core_toString.call(obj) ] || "object" :
412412
typeof obj;
413413
},

0 commit comments

Comments
 (0)