Options
All
  • Public
  • Public/Protected
  • All
Menu

Module string/unescape

Index

References

Functions

References

Renames and re-exports unescape

Functions

  • unescape(str?: string): string
  • The inverse of escape; this method converts the HTML entities &, <, >, ", and ' in string to their corresponding characters.

    example
     unescape('fred, barney, & pebbles'); //=> 'fred, barney, & pebbles'
    

    Parameters

    • str: string = ''

      The string to unescape.

    Returns string

    Returns the unescaped string.

Generated using TypeDoc