(names)
| 8264 | |
| 8265 | |
| 8266 | function createShortMethods(names) { |
| 8267 | forEach(arguments, function(name) { |
| 8268 | $http[name] = function(url, config) { |
| 8269 | return $http(extend(config || {}, { |
| 8270 | method: name, |
| 8271 | url: url |
| 8272 | })); |
| 8273 | }; |
| 8274 | }); |
| 8275 | } |
| 8276 | |
| 8277 | |
| 8278 | function createShortMethodsWithData(name) { |
no test coverage detected