Remove empty parts of the parsed URI.

v0.7.4-release
Urban Hafner 2009-06-21 16:28:23 +02:00
parent 3a44efea69
commit 6550e8cfa0
1 changed files with 5 additions and 1 deletions

View File

@ -66,7 +66,11 @@ node.http.parseUri = function (str) {
}
});
uri.toString = function () { return str; };
for (var i = o.key.length - 1; i >= 0; i--){
if (uri[o.key[i]] == "") delete uri[o.key[i]];
};
return uri;
};