Files
codeql/javascript/ql/test/query-tests/Expressions/ExprHasNoEffect/ngInject.js
2018-08-02 17:53:23 +01:00

10 lines
237 B
JavaScript

angular.module("MyMod").controller("MyCtrl", function($scope, $timeout) {
"ngInject";
// ...
});
angular.module("MyMod").controller("MyCtrl", ["$scope", "$timeout", function($scope, $timeout) {
"ngNoInject";
// ...
}]);