summaryrefslogtreecommitdiff
path: root/spec/frontend/__helpers__/text_helper.js
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-01-15 00:10:45 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-01-15 00:10:45 +0000
commit8b75948934667904196aba319aedda25b00f06ff (patch)
tree5f743f14301b5abe868a35fad87bfa0fc0581f04 /spec/frontend/__helpers__/text_helper.js
parent8f534e1e960eef1f4cfcb7c6d723840523515ffb (diff)
downloadgitlab-ce-8b75948934667904196aba319aedda25b00f06ff.tar.gz
Add latest changes from gitlab-org/gitlab@master
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..164f18faadc
--- /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, ' ');