I'm trying to use underscore or lodash in angular.module("",[]).config(function(){/* Here */})
, but it is expecting a Provider and throwing Unknown provider
.
- Should I just use
_
from global scope? (which is not preferrable) - Is there a way to inject utility like
underscore/lodash
in module config?