We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e624733 commit cae65bcCopy full SHA for cae65bc
src/index.js
@@ -81,6 +81,9 @@ export default (function create(/** @type {Options} */ defaults) {
81
/** @public @type {BodylessMethod} */
82
redaxios.delete = (url, config) => redaxios(url, config, 'delete');
83
84
+ /** @public @type {BodylessMethod} */
85
+ redaxios.head = (url, config) => redaxios(url, config, 'head');
86
+
87
88
redaxios.options = (url, config) => redaxios(url, config, 'options');
89
0 commit comments