(names)
| 12620 | |
| 12621 | |
| 12622 | function createShortMethods(names) { |
| 12623 | forEach(arguments, function(name) { |
| 12624 | $http[name] = function(url, config) { |
| 12625 | return $http(extend({}, config || {}, { |
| 12626 | method: name, |
| 12627 | url: url |
| 12628 | })); |
| 12629 | }; |
| 12630 | }); |
| 12631 | } |
| 12632 | |
| 12633 | |
| 12634 | function createShortMethodsWithData(name) { |
no test coverage detected