(name)
| 10262 | |
| 10263 | |
| 10264 | function createShortMethodsWithData(name) { |
| 10265 | forEach(arguments, function(name) { |
| 10266 | $http[name] = function(url, data, config) { |
| 10267 | return $http(extend({}, config || {}, { |
| 10268 | method: name, |
| 10269 | url: url, |
| 10270 | data: data |
| 10271 | })); |
| 10272 | }; |
| 10273 | }); |
| 10274 | } |
| 10275 | |
| 10276 | |
| 10277 | /** |
no test coverage detected