(name)
| 12476 | |
| 12477 | |
| 12478 | function createShortMethodsWithData(name) { |
| 12479 | forEach(arguments, function(name) { |
| 12480 | $http[name] = function(url, data, config) { |
| 12481 | return $http(extend({}, config || {}, { |
| 12482 | method: name, |
| 12483 | url: url, |
| 12484 | data: data |
| 12485 | })); |
| 12486 | }; |
| 12487 | }); |
| 12488 | } |
| 12489 | |
| 12490 | |
| 12491 | /** |
no test coverage detected