Skip to content

Instantly share code, notes, and snippets.

@jschwarty
Created March 10, 2018 02:06
Show Gist options
  • Save jschwarty/adc725c639fc871dd9d58e5528ea62c7 to your computer and use it in GitHub Desktop.
Save jschwarty/adc725c639fc871dd9d58e5528ea62c7 to your computer and use it in GitHub Desktop.
import { ActivatedRouteSnapshot } from '@angular/router';
export function getFullTreeParams(route: ActivatedRouteSnapshot, params = {}) {
if (route) {
params = {...params, ...route.params};
}
return route.firstChild
? this.getFullTreeParams(route.firstChild, params)
: params;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment