diff --git a/src/helpers/string.ts b/src/helpers/string.ts index 20b25709..59f22cf5 100644 --- a/src/helpers/string.ts +++ b/src/helpers/string.ts @@ -3,8 +3,9 @@ } */ export function limitSymbols(str: string, length: number, limitFrom = length + 10) { + str = str.trim(); if(str.length > limitFrom) { - str = str.slice(0, length).replace(/(\n|\s)+$/, '') + '...'; + str = str.slice(0, length)/* .replace(/\s*$/, '') */ + '...'; } return str;