diff options
author | Satya Rohith <me@satyarohith.com> | 2021-04-28 19:38:51 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-28 10:08:51 -0400 |
commit | 2bd087ab1b2c2047b1681b8bb369a1f8acf30019 (patch) | |
tree | 5a8cc8fdb5956e9396416dbe473440c449161c24 /op_crates/fetch/23_request.js | |
parent | 8c6f97719215815eae63cfb7cdcb5def27756a3a (diff) |
chore: upgrade dprint plugins (#10397)
Diffstat (limited to 'op_crates/fetch/23_request.js')
-rw-r--r-- | op_crates/fetch/23_request.js | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/op_crates/fetch/23_request.js b/op_crates/fetch/23_request.js index ce42d7ac5..0e4bd2a3f 100644 --- a/op_crates/fetch/23_request.js +++ b/op_crates/fetch/23_request.js @@ -58,11 +58,11 @@ }; /** - * @param {string} method - * @param {string} url - * @param {[string, string][]} headerList - * @param {InnerBody} body - * @returns + * @param {string} method + * @param {string} url + * @param {[string, string][]} headerList + * @param {InnerBody} body + * @returns */ function newInnerRequest(method, url, headerList = [], body = null) { return { @@ -76,7 +76,7 @@ /** * https://fetch.spec.whatwg.org/#concept-request-clone - * @param {InnerRequest} request + * @param {InnerRequest} request * @returns {InnerRequest} */ function cloneInnerRequest(request) { @@ -185,8 +185,8 @@ /** * https://fetch.spec.whatwg.org/#dom-request - * @param {RequestInfo} input - * @param {RequestInit} init + * @param {RequestInfo} input + * @param {RequestInit} init */ constructor(input, init = {}) { const prefix = "Failed to construct 'Request'"; |