chore(): fix merge conflict

This commit is contained in:
Adam Bradley
2016-03-06 22:41:13 -06:00
2 changed files with 28 additions and 1 deletions

View File

@ -182,7 +182,7 @@ export function getQuerystring(url: string): any {
const startIndex = url.indexOf('?');
if (startIndex !== -1) {
const queries = url.slice(startIndex + 1).split('&');
queries.forEach((param) => {
queries.filter((param) => { return param.indexOf('=') > 0; }).forEach((param) => {
var split = param.split('=');
queryParams[split[0].toLowerCase()] = split[1].split('#')[0];
});