(names)
| 12464 | |
| 12465 | |
| 12466 | function createShortMethods(names) { |
| 12467 | forEach(arguments, function(name) { |
| 12468 | $http[name] = function(url, config) { |
| 12469 | return $http(extend({}, config || {}, { |
| 12470 | method: name, |
| 12471 | url: url |
| 12472 | })); |
| 12473 | }; |
| 12474 | }); |
| 12475 | } |
| 12476 | |
| 12477 | |
| 12478 | function createShortMethodsWithData(name) { |
no test coverage detected