UNPKG
qtsd-fork
Version:
latest (0.0.2)
0.0.2
0.0.1
Do not use this please
qtsd-fork
/
example
/
node_modules
/
webpack-dev-middleware
/
lib
/
PathJoin.js
6 lines
(4 loc)
•
106 B
JavaScript
View Raw
1
2
3
4
5
6
function
pathJoin
(a, b)
{
return
a ==
"/"
?
"/"
+ b : (a ||
""
) +
"/"
+ b; }
module
.
exports
= pathJoin;