Readarr/frontend/src/Utilities/String/combinePath.js
2017-09-05 23:00:26 -04:00

5 lines
166 B
JavaScript

export default function combinePath(isWindows, basePath, paths = []) {
const slash = isWindows ? '\\' : '/';
return `${basePath}${slash}${paths.join(slash)}`;
}