kraut
kraut copied to clipboard
Extract query params from URL
Currently, only placeholder values aka URL params are extracted: #/users/12/info matched against #/users/{userId}/info results in userId = "12".
It could be useful to extract GET params as well: #/users/12/info?page=2 matched against the same pattern would give you page = "2" apart from the userId.