Skip to content

Instantly share code, notes, and snippets.

@gurasa
Created June 30, 2016 03:20
Show Gist options
  • Save gurasa/85212e8f3ff5ea980a7722663140b1ef to your computer and use it in GitHub Desktop.
Save gurasa/85212e8f3ff5ea980a7722663140b1ef to your computer and use it in GitHub Desktop.
JS で HTML エスケープする
escape_html = (string) ->
if typeof string != 'string'
return string
string.replace /[&'`"<>]/g, (match) ->
{
'&': '&amp;'
'\'': '&#x27;'
'`': '&#x60;'
'"': '&quot;'
'<': '&lt;'
'>': '&gt;'
}[match]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment