/**
* @function trim
* @description Trims a string by the right and by the left
* @param {String} str
* @return {String} Trimmed string
* @example
* trim(' This is a tesT ')
* // This is a tesT
* @example
* str(' This is a tesT ').trim().value
* // This is a tesT
*/
const trim = (str: string): string =>
str
.replace(/^\s+/, '')
.replace(/\s+$/, '')
export default trim
Source