(names)
| 11152 | |
| 11153 | |
| 11154 | function createShortMethods(names) { |
| 11155 | forEach(arguments, function(name) { |
| 11156 | $http[name] = function(url, config) { |
| 11157 | return $http(extend({}, config || {}, { |
| 11158 | method: name, |
| 11159 | url: url |
| 11160 | })); |
| 11161 | }; |
| 11162 | }); |
| 11163 | } |
| 11164 | |
| 11165 | |
| 11166 | function createShortMethodsWithData(name) { |
no test coverage detected