diff options
author | Ian Bull <irbull@eclipsesource.com> | 2024-08-28 16:40:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-28 22:40:37 +0200 |
commit | 6ccaebcdeae95a82b270ac5bde78b65b37fadb45 (patch) | |
tree | 4c50dc3aa74ef6bef2aca4706af8b16213b1e1f2 /ext/fetch | |
parent | 231bdc0aa0c08914735001f5e1261e1808d68190 (diff) |
refactor(ext): throw new error instead of throw error (#25272)
To ensure consistency across the codebase, this commit refactors the
code in the `ext` folder to use `throw new Error`` instead of `throw`
for throwing errors.
Fixes https://github.com/denoland/deno/issues/25270
Diffstat (limited to 'ext/fetch')
-rw-r--r-- | ext/fetch/26_fetch.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fetch/26_fetch.js b/ext/fetch/26_fetch.js index e2809187b..47186fb2d 100644 --- a/ext/fetch/26_fetch.js +++ b/ext/fetch/26_fetch.js @@ -145,7 +145,7 @@ async function mainFetch(req, recursive, terminator) { reqRid = resourceForReadableStream(stream, req.body.length); } } else { - throw TypeError("invalid body"); + throw new TypeError("invalid body"); } } |