(name)
| 10770 | |
| 10771 | |
| 10772 | function createShortMethodsWithData(name) { |
| 10773 | forEach(arguments, function(name) { |
| 10774 | $http[name] = function(url, data, config) { |
| 10775 | return $http(extend({}, config || {}, { |
| 10776 | method: name, |
| 10777 | url: url, |
| 10778 | data: data |
| 10779 | })); |
| 10780 | }; |
| 10781 | }); |
| 10782 | } |
| 10783 | |
| 10784 | |
| 10785 | /** |
no test coverage detected