PathJoin.js 106 Bytes
function pathJoin(a, b) {
	return a == "/" ? "/" + b : (a || "") + "/" + b;
}

module.exports = pathJoin;