Files
apkt-eis/src/utils/numbers.ts
2024-02-19 09:08:50 +07:00

17 lines
367 B
TypeScript
Executable File

const splitRoutePath = (routePath: string): string[] => {
const routeParts = routePath.split('/').filter((part) => part !== '')
const routeArray: string[] = []
let currentRoute = ''
for (const part of routeParts) {
currentRoute += `/${part}`
routeArray.push(currentRoute)
}
return routeArray
}
export {
splitRoutePath
}