From: Michał Gołębiowski Date: Tue, 4 Mar 2014 22:15:12 +0000 (+0100) Subject: Core: Remove native String#trim usage to save size X-Git-Tag: 1.11.1-beta1~42 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a9fa2ec76361abf4b2623879cf7932c488293f60;p=jquery.git Core: Remove native String#trim usage to save size (cherry-picked from 279913c71b63da721fa2f118cdce150effbf773e) Fixes #14794 --- diff --git a/src/core.js b/src/core.js index b07463ca1..f446ec304 100644 --- a/src/core.js +++ b/src/core.js @@ -7,9 +7,8 @@ define([ "./var/class2type", "./var/toString", "./var/hasOwn", - "./var/trim", "./var/support" -], function( deletedIds, slice, concat, push, indexOf, class2type, toString, hasOwn, trim, support ) { +], function( deletedIds, slice, concat, push, indexOf, class2type, toString, hasOwn, support ) { var version = "@VERSION", @@ -349,20 +348,11 @@ jQuery.extend({ }, // Support: Android<4.1, IE<9 - // Use native String.trim function wherever possible - trim: trim && !trim.call("\uFEFF\xA0") ? - function( text ) { - return text == null ? - "" : - trim.call( text ); - } : - - // Otherwise use our own trimming functionality - function( text ) { - return text == null ? - "" : - ( text + "" ).replace( rtrim, "" ); - }, + trim: function( text ) { + return text == null ? + "" : + ( text + "" ).replace( rtrim, "" ); + }, // results is for internal usage only makeArray: function( arr, results ) { diff --git a/src/var/trim.js b/src/var/trim.js deleted file mode 100644 index 18f835658..000000000 --- a/src/var/trim.js +++ /dev/null @@ -1,3 +0,0 @@ -define(function() { - return "".trim; -});