summaryrefslogtreecommitdiff
path: root/src/Utils.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'src/Utils.coffee')
-rw-r--r--src/Utils.coffee1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Utils.coffee b/src/Utils.coffee
index 7bbdfa8..aade0de 100644
--- a/src/Utils.coffee
+++ b/src/Utils.coffee
@@ -37,7 +37,6 @@ class Utils
# @return [String] A trimmed string
#
@trim: (str, _char = '\\s') ->
- return str.trim()
regexLeft = @REGEX_LEFT_TRIM_BY_CHAR[_char]
unless regexLeft?
@REGEX_LEFT_TRIM_BY_CHAR[_char] = regexLeft = new RegExp '^'+_char+''+_char+'*'