mirror of
https://github.com/github/codeql.git
synced 2026-01-19 17:34:47 +01:00
8 lines
186 B
JavaScript
8 lines
186 B
JavaScript
angular.module('myModule', [])
|
|
.config(['year', function(year) {
|
|
// ...
|
|
}]);
|
|
|
|
angular.module('myModule')
|
|
.constant('year', 2000); // GOOD: year is of kind 'constant'
|