(name)
| 13268 | |
| 13269 | |
| 13270 | function createShortMethodsWithData(name) { |
| 13271 | forEach(arguments, function(name) { |
| 13272 | $http[name] = function(url, data, config) { |
| 13273 | return $http(extend({}, config || {}, { |
| 13274 | method: name, |
| 13275 | url: url, |
| 13276 | data: data |
| 13277 | })); |
| 13278 | }; |
| 13279 | }); |
| 13280 | } |
| 13281 | |
| 13282 | |
| 13283 | /** |
no test coverage detected