(name)
| 9087 | |
| 9088 | |
| 9089 | function createShortMethodsWithData(name) { |
| 9090 | forEach(arguments, function(name) { |
| 9091 | $http[name] = function(url, data, config) { |
| 9092 | return $http(extend(config || {}, { |
| 9093 | method: name, |
| 9094 | url: url, |
| 9095 | data: data |
| 9096 | })); |
| 9097 | }; |
| 9098 | }); |
| 9099 | } |
| 9100 | |
| 9101 | |
| 9102 | /** |
no test coverage detected