PathJoin.js 106 B

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