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, 18 insertions, 0 deletions
diff --git a/spec/frontend/helpers/text_helper.js b/spec/frontend/helpers/text_helper.js
new file mode 100644
index 00000000000..e0fe18e5560
--- /dev/null
+++ b/spec/frontend/helpers/text_helper.js
@@ -0,0 +1,18 @@
+/**
+ * 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, ' ');