Created
July 20, 2016 13:47
-
-
Save yoshuawuyts/eaae9ecef23aae38b4cab2656eeddbbb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const reg = new RegExp("([^?=&]+)(=([^&]*))?", "g") | |
function qs (uri) { | |
const obj = {} | |
uri = uri.replace(/^.*\?/, '') | |
uri.replace(reg, map) | |
return obj | |
function map (a0, a1, a2, a3) { | |
obj[decodeURIComponent(a1)] = decodeURIComponent(a3) | |
} | |
} | |
console.log(qs('http:///foo/bar/#hello?world=bar')) | |
console.log(qs('/foo/bar/#hello?world=bar&foo=hey')) | |
console.log(qs('/foo/bar/#hello?world=bar&foo=hey&bbbbuuuub_foo=oi')) |
Ah, good to know… looks like query strings are "are often used to carry identifying information in the form of key=value
pairs", but nothing binding (seems?). See: https://tools.ietf.org/html/rfc3986#section-3.4 So lack of foo=bar&foo=baz
(lists) and foo[bar]=baz
(objects) compared to qs
is a perfectly valid choice. 👍
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here's a version without using a regular expression (not better, just different):