(names)
| 11944 | |
| 11945 | |
| 11946 | function createShortMethods(names) { |
| 11947 | forEach(arguments, function(name) { |
| 11948 | $http[name] = function(url, config) { |
| 11949 | return $http(extend({}, config || {}, { |
| 11950 | method: name, |
| 11951 | url: url |
| 11952 | })); |
| 11953 | }; |
| 11954 | }); |
| 11955 | } |
| 11956 | |
| 11957 | |
| 11958 | function createShortMethodsWithData(name) { |
no test coverage detected