The string to be modified.
A string with all spaces removed.
If the string is empty, return an empty string, otherwise return the reverse of the string
the string to reverse
The last character of the string is being returned first, followed by the second to last character, and so on.
Replace a substring in a string, but only once, from the beginning and end of the string.
The string to be modified.
The substring to replace.
The string to replace the substring with.
The string with the first and last instances of the substring replaced with the replaceWith string.
If the string is longer than the maxLength, return a substring of the string, otherwise return the string.
The string to trim.
The maximum length of the string.
string or shortened string
It takes a string and a maximum length, and returns a string that is at most the maximum length, with an ellipsis at the end if the string was longer than the maximum length
The string to trim.
The maximum length of the string.
A string with an ellipsis at the end.
Generated using TypeDoc version 0.22.15, the 4/20/2022
This function takes a string and returns a string with all spaces removed.