(names)
| 8233 | |
| 8234 | |
| 8235 | function createShortMethods(names) { |
| 8236 | forEach(arguments, function(name) { |
| 8237 | $http[name] = function(url, config) { |
| 8238 | return $http(extend(config || {}, { |
| 8239 | method: name, |
| 8240 | url: url |
| 8241 | })); |
| 8242 | }; |
| 8243 | }); |
| 8244 | } |
| 8245 | |
| 8246 | |
| 8247 | function createShortMethodsWithData(name) { |
no test coverage detected