UNPKG

nitropage

Version:

A free and open source, extensible visual page builder based on SolidStart.

12 lines (9 loc) 208 B
export const normalizeUrlPath = (path = "") => { if (!path.startsWith("/")) { path = "/" + path; } if (path.length > 1 && path.endsWith("/")) { path = path.slice(0, -1); } return path; };