Skip to content

Commit

Permalink
[fix] style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrugzz committed Nov 11, 2014
1 parent eb95660 commit 7c5e40a
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions lib/http-proxy/common.js
Expand Up @@ -133,17 +133,21 @@ 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 = [
//
retSegs = [
args.filter(function filter(a) {
return !!a;
}).join('/').replace(/\/+/g, '/')
Expand Down

0 comments on commit 7c5e40a

Please sign in to comment.