(names)
| 10250 | |
| 10251 | |
| 10252 | function createShortMethods(names) { |
| 10253 | forEach(arguments, function(name) { |
| 10254 | $http[name] = function(url, config) { |
| 10255 | return $http(extend({}, config || {}, { |
| 10256 | method: name, |
| 10257 | url: url |
| 10258 | })); |
| 10259 | }; |
| 10260 | }); |
| 10261 | } |
| 10262 | |
| 10263 | |
| 10264 | function createShortMethodsWithData(name) { |
no test coverage detected