UNPKG

scrivito

Version:

Scrivito is a professional, yet easy to use SaaS Enterprise Content Management Service, built for digital agencies and medium to large businesses. It is completely maintenance-free, cost-effective, and has unprecedented performance and security.

5 lines (4 loc) 169 B
export function joinPaths(startPath: string, endPath: string): string { if (endPath === '') return startPath; return `${startPath}/${endPath.replace(/^\//, '')}`; }