Edit File: PathJoin.js
function pathJoin(a, b) { return a == "/" ? "/" + b : (a || "") + "/" + b; } module.exports = pathJoin;
Back to File Manager