/angular-lo-dash

A tiny AngularJS module to make the lo-dash global object available to the AngularJS DI system

Primary LanguageJavaScriptMIT LicenseMIT

angular-lo-dash Build Status

A tiny AngularJS module to make the lo-dash global object available to the AngularJS DI system.

Usage

Add the dependency to your AngularJS app:

// Add module dependency 
angular.module('myApp', ['angular-lo-dash']);

Then use it by injecting _ into your services, controllers, or directives:

angular.service('MyService', function(_) {

});