summaryrefslogtreecommitdiff
path: root/spec/frontend/helpers/text_helper.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/helpers/text_helper.js')
-rw-r--r--spec/frontend/helpers/text_helper.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/spec/frontend/helpers/text_helper.js b/spec/frontend/helpers/text_helper.js
deleted file mode 100644
index e0fe18e5560..00000000000
--- a/spec/frontend/helpers/text_helper.js
+++ /dev/null
@@ -1,18 +0,0 @@
-/**
- * Replaces line break with an empty space
- * @param {*} data
- */
-export const removeBreakLine = data => data.replace(/\r?\n|\r/g, ' ');
-
-/**
- * Removes line breaks, spaces and trims the given text
- * @param {String} str
- * @returns {String}
- */
-export const trimText = str =>
- str
- .replace(/\r?\n|\r/g, '')
- .replace(/\s\s+/g, ' ')
- .trim();
-
-export const removeWhitespace = str => str.replace(/\s\s+/g, ' ');