(name)
| 9623 | |
| 9624 | |
| 9625 | function createShortMethodsWithData(name) { |
| 9626 | forEach(arguments, function(name) { |
| 9627 | $http[name] = function(url, data, config) { |
| 9628 | return $http(extend(config || {}, { |
| 9629 | method: name, |
| 9630 | url: url, |
| 9631 | data: data |
| 9632 | })); |
| 9633 | }; |
| 9634 | }); |
| 9635 | } |
| 9636 | |
| 9637 | |
| 9638 | /** |
no test coverage detected