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