(name)
| 13203 | |
| 13204 | |
| 13205 | function createShortMethodsWithData(name) { |
| 13206 | forEach(arguments, function(name) { |
| 13207 | $http[name] = function(url, data, config) { |
| 13208 | return $http(extend({}, config || {}, { |
| 13209 | method: name, |
| 13210 | url: url, |
| 13211 | data: data |
| 13212 | })); |
| 13213 | }; |
| 13214 | }); |
| 13215 | } |
| 13216 | |
| 13217 | |
| 13218 | /** |
no test coverage detected