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_response.js | |
parent | 8c6f97719215815eae63cfb7cdcb5def27756a3a (diff) |
chore: upgrade dprint plugins (#10397)
Diffstat (limited to 'op_crates/fetch/23_response.js')
-rw-r--r-- | op_crates/fetch/23_response.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/op_crates/fetch/23_response.js b/op_crates/fetch/23_response.js index 42d16d44e..6bd7a6487 100644 --- a/op_crates/fetch/23_response.js +++ b/op_crates/fetch/23_response.js @@ -53,7 +53,7 @@ /** * @param {number} status - * @returns {boolean} + * @returns {boolean} */ function nullBodyStatus(status) { return status === 101 || status === 204 || status === 205 || status === 304; @@ -61,7 +61,7 @@ /** * @param {number} status - * @returns {boolean} + * @returns {boolean} */ function redirectStatus(status) { return status === 301 || status === 302 || status === 303 || @@ -70,7 +70,7 @@ /** * https://fetch.spec.whatwg.org/#concept-response-clone - * @param {InnerResponse} response + * @param {InnerResponse} response * @returns {InnerResponse} */ function cloneInnerResponse(response) { @@ -220,8 +220,8 @@ } /** - * @param {BodyInit | null} body - * @param {ResponseInit} init + * @param {BodyInit | null} body + * @param {ResponseInit} init */ constructor(body = null, init = {}) { const prefix = "Failed to construct 'Response'"; |