(names)
| 9075 | |
| 9076 | |
| 9077 | function createShortMethods(names) { |
| 9078 | forEach(arguments, function(name) { |
| 9079 | $http[name] = function(url, config) { |
| 9080 | return $http(extend(config || {}, { |
| 9081 | method: name, |
| 9082 | url: url |
| 9083 | })); |
| 9084 | }; |
| 9085 | }); |
| 9086 | } |
| 9087 | |
| 9088 | |
| 9089 | function createShortMethodsWithData(name) { |
no test coverage detected