UNPKG

@npio/internals

Version:

A free visual website editor, powered with your own SolidJS components.

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; };