Skip to content

Instantly share code, notes, and snippets.

@commuterjoy
Created July 29, 2014 13:32
Show Gist options
  • Save commuterjoy/4fad7b696f189f76b31a to your computer and use it in GitHub Desktop.
Save commuterjoy/4fad7b696f189f76b31a to your computer and use it in GitHub Desktop.
Fix a broken URL
"?foo=1&bar=2&car=s&p&foo=hello"
.split('&')
.map(function (n) {
return n.indexOf('=') > 0 ? n : encodeURIComponent('&' + n);
})
.join('&')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment