Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
If a query string contained a key pair without an `=` in the string then it would cause an array out of bounds exception because the split was not wrapped defensively to test for the presence of an `=` first. Example: ?&abc=123&xyz Split on `&` would look like: `['', 'abc=123', 'xyz']` Both cases are now handled where the string is missing `=`
- Loading branch information