DEV Community

Discussion on: Tree-shakable dependencies in Angular projects

Collapse
 
layzee profile image
Lars Gyrup Brink Nielsen

Thanks for your question, Chan.

Angular is built around dependency injection for inversion of control and testability. The difference is that we can replace those constants and functions in tests or even at runtime when we use an Angular dependency.

Collapse
 
chan_austria777 profile image
chan 🤖

I see, Thanks for the wonderful article.