(name)
| 11956 | |
| 11957 | |
| 11958 | function createShortMethodsWithData(name) { |
| 11959 | forEach(arguments, function(name) { |
| 11960 | $http[name] = function(url, data, config) { |
| 11961 | return $http(extend({}, config || {}, { |
| 11962 | method: name, |
| 11963 | url: url, |
| 11964 | data: data |
| 11965 | })); |
| 11966 | }; |
| 11967 | }); |
| 11968 | } |
| 11969 | |
| 11970 | |
| 11971 | /** |
no test coverage detected