暫無描述

PathJoin.js 106B

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