From b26dcbc69d56b6ac5780520dad47f10460127d3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sun, 17 Jan 2021 00:32:59 +0100 Subject: chore: Enforce ban-untagged-todo lint rule (#9135) --- op_crates/fetch/26_fetch.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'op_crates/fetch/26_fetch.js') diff --git a/op_crates/fetch/26_fetch.js b/op_crates/fetch/26_fetch.js index f5147d6b9..c8a470033 100644 --- a/op_crates/fetch/26_fetch.js +++ b/op_crates/fetch/26_fetch.js @@ -283,7 +283,7 @@ } function getStream(blobBytes) { - // TODO: Align to spec https://fetch.spec.whatwg.org/#concept-construct-readablestream + // TODO(bartlomieju): Align to spec https://fetch.spec.whatwg.org/#concept-construct-readablestream return new ReadableStream({ type: "bytes", start: (controller) => { @@ -1240,7 +1240,7 @@ let body; let clientRid = null; let redirected = false; - let remRedirectCount = 20; // TODO: use a better way to handle + let remRedirectCount = 20; // TODO(bartlomieju): use a better way to handle if (typeof input === "string" || input instanceof URL) { url = typeof input === "string" ? input : input.href; -- cgit v1.2.3