Skip to content

Commit

Permalink
http.del body accepts ArrayBuffer type
Browse files Browse the repository at this point in the history
  • Loading branch information
ppcano committed Feb 15, 2021
1 parent 5d08e47 commit 5779723
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Make a DELETE request.
| Parameter | Type | Description |
| ---------------------------- | --------------- | ----------------------------------------------------------------------------------------- |
| url | string | Request URL (e.g. `http://example.com`). |
| body (optional, discouraged) | string / object | Request body; objects will be `x-www-form-urlencoded`. This is discouraged, because sending a DELETE request with a body has [no defined semantics](https://tools.ietf.org/html/rfc7231#section-4.3.5) and may cause some servers to reject it. |
| body (optional, discouraged) | string / object / ArrayBuffer | Request body; objects will be `x-www-form-urlencoded`. This is discouraged, because sending a DELETE request with a body has [no defined semantics](https://tools.ietf.org/html/rfc7231#section-4.3.5) and may cause some servers to reject it. |
| params (optional) | object | [Params](/javascript-api/k6-http/params) object containing additional request parameters. |

### Returns
Expand Down

0 comments on commit 5779723

Please sign in to comment.