Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[fix] style changes
  • Loading branch information
jcrugzz committed Nov 11, 2014
1 parent eb95660 commit 33c0d66
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions lib/http-proxy/common.js
Expand Up @@ -133,19 +133,23 @@ common.getPort = function(req) {
*/

common.urlJoin = function() {
var args = Array.prototype.slice.call(arguments);

// We do not want to mess with the query string. All we want to touch is the path.
var lastIndex = args.length-1;
var last = args[lastIndex]
var lastSegs = last.split('?')
args[lastIndex] = lastSegs[0]

//
// We do not want to mess with the query string. All we want to touch is the path.
//
var args = Array.prototype.slice.call(arguments),
lastIndex = args.length - 1,
last = args[lastIndex],
lastSegs = last.split('?'),
args[lastIndex] = lastSegs[0],
retSegs;

//
// Join all strings, but remove empty strings so we don't get extra slashes from
// joining e.g. ['', 'am']
var retSegs = [
args.filter(function filter(a) {
return !!a;
//
retSegs = [
args.filter(function filter(a) {
return !!a;
}).join('/').replace(/\/+/g, '/')
];

Expand Down

0 comments on commit 33c0d66

Please sign in to comment.