(name)
| 12634 | |
| 12635 | |
| 12636 | function createShortMethodsWithData(name) { |
| 12637 | forEach(arguments, function(name) { |
| 12638 | $http[name] = function(url, data, config) { |
| 12639 | return $http(extend({}, config || {}, { |
| 12640 | method: name, |
| 12641 | url: url, |
| 12642 | data: data |
| 12643 | })); |
| 12644 | }; |
| 12645 | }); |
| 12646 | } |
| 12647 | |
| 12648 | |
| 12649 | /** |
no test coverage detected