nextui/apps/docs/utils/docs-utils.ts
2023-05-30 18:38:13 -03:00

6 lines
162 B
TypeScript

export function removeFromLast<T>(path: string, key: string): string | T {
const i = path.lastIndexOf(key);
return i === -1 ? path : path.substring(0, i);
}