* It takes a params object and converts it to a FormData object * * @param {Object<string, any>} params - The parameters to be converted to a FormData object. * @param {Object<string, any>} options - The options object passed to the Axios constructor. * * @returns {void}
(params, options)
| 33 | * @returns {void} |
| 34 | */ |
| 35 | function AxiosURLSearchParams(params, options) { |
| 36 | this._pairs = []; |
| 37 | |
| 38 | params && toFormData(params, this, options); |
| 39 | } |
| 40 | |
| 41 | const prototype = AxiosURLSearchParams.prototype; |
| 42 |
nothing calls this directly
no test coverage detected