Skip to content

Instantly share code, notes, and snippets.

@poteto
Last active August 29, 2015 14:22
Show Gist options
  • Save poteto/24e2c8ffec76375ecc58 to your computer and use it in GitHub Desktop.
Save poteto/24e2c8ffec76375ecc58 to your computer and use it in GitHub Desktop.
_guessRoutePath(routeNames, name, index) {
const routes = routeNames.slice(0, index + 1);
if (routes.length === 1) {
return `${name}.index`;
} else {
return routes.join('.');
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment