Skip to content

This is simple module for wrapping the utility library Lo-dash (http://lodash.com/) in angular service.

License

Notifications You must be signed in to change notification settings

paucls/angular-lodash-wrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

angular-lodash-wrapper

This is simple module for wrapping the utility library Lo-dash (http://lodash.com/) in an Angular service.

Installing

Install via bower

bower install angular-lodash-wrapper

Require it into your application (after Angular)

<script src="angular-lodash-wrapper.js"></script>

Add the module as a dependency to your app

angular.module('myApp', ['angularLodashWrapper']);

Usage

Inject it as a dependency in your Controller or Service and it is ready to use.

angular.module('app').
  controller('myCtrl', function($scope, _) {
    ...
    _.find(...);
    ...
});

About

This is simple module for wrapping the utility library Lo-dash (http://lodash.com/) in angular service.

Resources

License

Stars

Watchers

Forks

Packages

No packages published