angular-momentjs
angular-momentjs copied to clipboard
No $ in service names
The name of your provider is $moment
. All names starting with $
are reserved for Angular internal services though. Custom services shouldn't/mustn't start with $
.
Source: https://docs.angularjs.org/tutorial/step_05
(scroll down to the headline "$
Prefix Naming Convention")
This should be changed.