From 716963937db14e775bf21fd76053a03edc10da49 Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Mon, 17 Dec 2012 17:09:30 -0500 Subject: [PATCH] 2.0: Remove isArray shim Signed-off-by: Rick Waldron --- src/core.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/core.js b/src/core.js index a116f6c89..3859caa01 100644 --- a/src/core.js +++ b/src/core.js @@ -397,9 +397,7 @@ jQuery.extend({ return jQuery.type(obj) === "function"; }, - isArray: Array.isArray || function( obj ) { - return jQuery.type(obj) === "array"; - }, + isArray: Array.isArray, isWindow: function( obj ) { return obj != null && obj == obj.window; -- 2.39.5