Skip to content

Instantly share code, notes, and snippets.

@edymerchk
Created February 11, 2014 13:29
Show Gist options
  • Select an option

  • Save edymerchk/8934808 to your computer and use it in GitHub Desktop.

Select an option

Save edymerchk/8934808 to your computer and use it in GitHub Desktop.
htmlEntities: (str) ->
return String(str).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;').replace(/'/g, '&apos;')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment