Skip to content

Instantly share code, notes, and snippets.

@EugeneKostrikov
Created October 4, 2014 10:19
Show Gist options
  • Save EugeneKostrikov/5b560a3b826722296804 to your computer and use it in GitHub Desktop.
Save EugeneKostrikov/5b560a3b826722296804 to your computer and use it in GitHub Desktop.
Constant -> Provider
.provider('Test', ['constant', function(constant){
return {
$get: ['constant', function(sameConstant){
sameConstant === constant;
}]
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment