2019-07-07 11:18:12 +05:30
|
|
|
/**
|
|
|
|
* Replaces line break with an empty space
|
|
|
|
* @param {*} data
|
|
|
|
*/
|
2021-03-08 18:12:59 +05:30
|
|
|
export const removeBreakLine = (data) => data.replace(/\r?\n|\r/g, ' ');
|
2019-07-07 11:18:12 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes line breaks, spaces and trims the given text
|
|
|
|
* @param {String} str
|
|
|
|
* @returns {String}
|
|
|
|
*/
|
2021-03-08 18:12:59 +05:30
|
|
|
export const trimText = (str) =>
|
2019-07-07 11:18:12 +05:30
|
|
|
str
|
|
|
|
.replace(/\r?\n|\r/g, '')
|
|
|
|
.replace(/\s\s+/g, ' ')
|
|
|
|
.trim();
|
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
export const removeWhitespace = (str) => str.replace(/\s\s+/g, ' ');
|