(name)
| 8276 | |
| 8277 | |
| 8278 | function createShortMethodsWithData(name) { |
| 8279 | forEach(arguments, function(name) { |
| 8280 | $http[name] = function(url, data, config) { |
| 8281 | return $http(extend(config || {}, { |
| 8282 | method: name, |
| 8283 | url: url, |
| 8284 | data: data |
| 8285 | })); |
| 8286 | }; |
| 8287 | }); |
| 8288 | } |
| 8289 | |
| 8290 | |
| 8291 | /** |
no test coverage detected