Skip to content

Instantly share code, notes, and snippets.

@gparlakov
Last active May 5, 2018 19:54
Show Gist options
  • Save gparlakov/88f80478efeee7c96824665c35e3b84a to your computer and use it in GitHub Desktop.
Save gparlakov/88f80478efeee7c96824665c35e3b84a to your computer and use it in GitHub Desktop.
ng-gotchas-module-injector
var injector = {}; //created at app-bootstrap time
injector["UserProvider"] = new EagerUserService(); // at EagerModule evaluation time
injector["UserProvider"] = new UserService(); // at AppModule evaluation time
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment