Skip to content

Instantly share code, notes, and snippets.

@KrekkieD
Created November 20, 2014 10:49
Show Gist options
  • Save KrekkieD/69df5370a9152f68850c to your computer and use it in GitHub Desktop.
Save KrekkieD/69df5370a9152f68850c to your computer and use it in GitHub Desktop.
(function () {
'use strict';
angular.module('foo', [])
.factory('fooSearch', fooSearch);
function fooSearch(){
/* ... */
}
}());
// vs
angular.module('foo', [])
.factory('fooSearch', function fooSearch(){
'use strict';
/* ... */
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment