1 2 3 4 5
function pathJoin(a, b) { return a == "/" ? "/" + b : (a || "") + "/" + b; } module.exports = pathJoin;