persona-community-5/.pnpm-store/v3/files/84/a44d74ac3aaf2ff178cce387bd55445f792d186c960154d2333750e8748f2eba2f361837e62df208b52737843a6a8438f8483f210261355037062a2f5baf67
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

9 lines
253 B
Plaintext

/**
* Removes everything after the last "/", but leaves the slash.
*/
export default function stripFilename(path: string | undefined | null): string {
if (!path) return '';
const index = path.lastIndexOf('/');
return path.slice(0, index + 1);
}