(name)
| 11164 | |
| 11165 | |
| 11166 | function createShortMethodsWithData(name) { |
| 11167 | forEach(arguments, function(name) { |
| 11168 | $http[name] = function(url, data, config) { |
| 11169 | return $http(extend({}, config || {}, { |
| 11170 | method: name, |
| 11171 | url: url, |
| 11172 | data: data |
| 11173 | })); |
| 11174 | }; |
| 11175 | }); |
| 11176 | } |
| 11177 | |
| 11178 | |
| 11179 | /** |
no test coverage detected