UNPKG

@keycloakify/keycloak-admin-ui

Version:
9 lines 354 B
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