(args)
| 1437 | } |
| 1438 | |
| 1439 | function joinUrlPath(args) { |
| 1440 | let result = arguments[0]; |
| 1441 | for (let ix = 1; ix < arguments.length; ix++) { |
| 1442 | const next = arguments[ix]; |
| 1443 | result += result[result.length - 1] === '/' && next[0] === '/' ? |
| 1444 | next.slice(1) : next; |
| 1445 | } |
| 1446 | return result; |
| 1447 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…