(names)
| 10758 | |
| 10759 | |
| 10760 | function createShortMethods(names) { |
| 10761 | forEach(arguments, function(name) { |
| 10762 | $http[name] = function(url, config) { |
| 10763 | return $http(extend({}, config || {}, { |
| 10764 | method: name, |
| 10765 | url: url |
| 10766 | })); |
| 10767 | }; |
| 10768 | }); |
| 10769 | } |
| 10770 | |
| 10771 | |
| 10772 | function createShortMethodsWithData(name) { |
no test coverage detected