Welcome to mirror list, hosted at ThFree Co, Russian Federation.

text_helper.js « __helpers__ « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 164f18faadc040ab2c427542bb3f4d68e424b448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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, ' ');