Files
DSTEngine/hGameTest/node_modules/webpack-dev-middleware/lib/PathJoin.js
T
2021-03-07 05:58:59 +01:00

6 lines
106 B
JavaScript

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