Takes an escaped string and returns an unescaped string
function unEscapeString(str: string): string
// Example:
unEscapeString("Hello <there>, my 'friend'") //=> "Hello <there>, my 'friend'"
Takes an escaped string and returns an unescaped string
function unEscapeString(str: string): string
// Example:
unEscapeString("Hello <there>, my 'friend'") //=> "Hello <there>, my 'friend'"