Skip to content

Instantly share code, notes, and snippets.

@justanotherdot
Created August 20, 2017 03:50
Show Gist options
  • Save justanotherdot/58281457b5b05e6c6ddbce7c1262638b to your computer and use it in GitHub Desktop.
Save justanotherdot/58281457b5b05e6c6ddbce7c1262638b to your computer and use it in GitHub Desktop.
const d = x => decodeURIComponent(x);
d('http%253A');
// => "http%3A"
d(d('http%253A'));
// => "http:"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment