Currently pipes are global and are not easily configurable. We need to make them scoped to a component and provide a way to easily configure them.
Proposal:
@Component({
viewInjector: [
bind(Pipes).toFactory(Pipes.append({
async: [newAsyncPipe]
})
]
})
Currently pipes are global and are not easily configurable. We need to make them scoped to a component and provide a way to easily configure them.
Proposal: