(name)
| 8245 | |
| 8246 | |
| 8247 | function createShortMethodsWithData(name) { |
| 8248 | forEach(arguments, function(name) { |
| 8249 | $http[name] = function(url, data, config) { |
| 8250 | return $http(extend(config || {}, { |
| 8251 | method: name, |
| 8252 | url: url, |
| 8253 | data: data |
| 8254 | })); |
| 8255 | }; |
| 8256 | }); |
| 8257 | } |
| 8258 | |
| 8259 | |
| 8260 | /** |
no test coverage detected