export function buildPath(basePath, path) { if (!basePath) { return path; } else { return `${basePath}/${path}`; } }