diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core.js | 22 | ||||
-rw-r--r-- | src/var/trim.js | 3 |
2 files changed, 6 insertions, 19 deletions
diff --git a/src/core.js b/src/core.js index 11c232765..311e360aa 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( arr, slice, concat, push, indexOf, class2type, toString, hasOwn, trim, support ) { +], function( arr, slice, concat, push, indexOf, class2type, toString, hasOwn, support ) { var // Use the correct document accordingly with window argument (sandbox) @@ -341,20 +340,11 @@ jQuery.extend({ }, // Support: Android<4.1 - // 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; -}); |