From 0bd98b1b13872255225358f328bee1f980755483 Mon Sep 17 00:00:00 2001 From: Ralin Chimev Date: Fri, 29 Apr 2016 22:22:27 +0300 Subject: [PATCH] Ajax: Remove unnecessary use of jQuery.trim The subsequent .match already ignores leading/trailing space. Ref gh-3003 Closes gh-3095 --- src/ajax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ajax.js b/src/ajax.js index fd6679936..2bb03883d 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -531,7 +531,7 @@ jQuery.extend( { s.type = options.method || options.type || s.method || s.type; // Extract dataTypes list - s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ]; + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ]; // A cross-domain request is in order when the origin doesn't match the current origin. if ( s.crossDomain == null ) {