Files
dbgate/packages/api/src/utility/getExpressPath.js
2022-02-24 14:42:37 +01:00

11 lines
278 B
JavaScript

function getExpressPath(path) {
path = path.replace(/\/*$/, '').replace(/^\/*/, '');
const root = (process.env.WEB_ROOT || '').replace(/^\/*/, '').replace(/\/*$/, '');
if (root) {
return `/${root}/${path}`;
}
return `/${path}`;
}
module.exports = getExpressPath;