Skip to content

Commit

Permalink
Adds unescape function
Browse files Browse the repository at this point in the history
  • Loading branch information
alderg committed Jul 10, 2023
1 parent 4061669 commit 6c5c707
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tools/convert.html
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@ <h2>Inflate/deflate, URL encode/decode</h2>
(<span id="count">0</span> chars)
<br>
<button onclick="document.getElementById('textarea').value=escape(document.getElementById('textarea').value);return false;">Escape</button>&nbsp;
<button onclick="document.getElementById('textarea').value=unescape(document.getElementById('textarea').value);return false;">Unescape</button>&nbsp;
<button onclick="document.getElementById('textarea').value=btoa(document.getElementById('textarea').value);return false;">btoa</button>
<button onclick="document.getElementById('textarea').value=atob(document.getElementById('textarea').value);return false;">atob</button>
<button onclick="normalizeXml();return false;">Normalize XML</button>
Expand Down

1 comment on commit 6c5c707

@davidjgraph
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed.

Please sign in to comment.