Skip to content

Instantly share code, notes, and snippets.

@alfredfrancis
Created February 6, 2018 07:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alfredfrancis/70b93123516b2c18ec3628a07ef55af0 to your computer and use it in GitHub Desktop.
Save alfredfrancis/70b93123516b2c18ec3628a07ef55af0 to your computer and use it in GitHub Desktop.
Unescape JS
unescape(s){
return this.stripTags(this.s(s)).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment