debian-mirror-gitlab/app/assets/javascripts/locale/ensure_single_line.cjs
2023-06-20 00:43:36 +05:30

23 lines
501 B
JavaScript

const SPLIT_REGEX = /\s*[\r\n]+\s*/;
/**
*
* strips newlines from strings and replaces them with a single space
*
* @example
*
* ensureSingleLine('foo \n bar') === 'foo bar'
*
* @param {String} str
* @returns {String}
*/
module.exports = function ensureSingleLine(str) {
// This guard makes the function significantly faster
if (str.includes('\n') || str.includes('\r')) {
return str
.split(SPLIT_REGEX)
.filter((s) => s !== '')
.join(' ');
}
return str;
};