angular-cn/modules/angular2/router
Brian Ford 75343eb340 feat(router): add regex matchers
@petebacondarwin deserves credit for most of this commit.

This allows you to specify a regex and serializer function instead
of the path DSL in your route declaration.

```
@RouteConfig([
  { regex: '[a-z]+.[0-9]+',
    serializer: (params) => `{params.a}.params.b}`,
    component: MyComponent }
])
class Component {}
```

Closes #7325
Closes #7126
2016-03-02 16:08:19 -08:00
..
router_link_dsl.ts feat(router): add regex matchers 2016-03-02 16:08:19 -08:00
testing.ts cleanup(testing): create top level files for mocks 2015-11-24 19:29:52 +00:00