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.

8 lines (7 loc) 182 B
/** * Split a path to segments. */ export const splitToSegments = (path: string) => { const segments = path.split("/").filter((segment) => segment !== ""); return segments; };