@keycloakify/keycloak-admin-ui
Version:
Repackaged Keycloak Admin UI
9 lines • 354 B
JavaScript
export const getId = (pathname) => {
const pathParts = pathname.substring(1).split("/");
return pathParts.length > 1 ? pathParts.splice(2) : undefined;
};
export const getLastId = (pathname) => {
const pathParts = getId(pathname);
return pathParts ? pathParts[pathParts.length - 1] : undefined;
};
//# sourceMappingURL=groupIdUtils.js.map