UNPKG

@refinedev/core

Version:

refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.

7 lines (6 loc) 169 B
/** * Remove leading and trailing slashes from a route. */ export const removeLeadingTrailingSlashes = (route: string) => { return route.replace(/^\/|\/$/g, ""); };