diff --git a/lib/str.ts b/lib/str.ts index 191b47a2..cdf8dd08 100644 --- a/lib/str.ts +++ b/lib/str.ts @@ -112,8 +112,8 @@ const Str = { /** * Escape text while preventing any sort of double escape, so 'X & Y' -> 'X & Y' and 'X & Y' -> 'X & Y' * - * @param s the string to escape - * @return string the escaped string + * @param s The string to escape + * @returns The escaped string */ safeEscape(s: string): string { return lodashEscape(lodashUnescape(s));