Smarten up your ngrx reducers
Despite ngrx reducers being pure functions, you can make them benefit from angular dependency injection.
By themselves they cannot (since they are just functions, and DI occurs in @Injectable() classes and provider definitions), but ngrx allows for…