Is Deno's new Request missing implementation of Fetch Spec steps 13-21, leading to Issue #27763?
In Deno, the new Request implementation appears to be missing steps 13 to 21 as specified in the Fetch Standard. Is this intentional? I believe this is the reason behind the issue opened at https://github.com/denoland/deno/issues/27763.
GitHub
denoland/deno
A modern runtime for JavaScript and TypeScript. Contribute to denoland/deno development by creating an account on GitHub.
4 Replies
There is no notion of
referrer
in Deno so these steps are skipped intentionally. What is the problem you are facing?thank you for me! I'm not particularly having trouble, but I was curious about the behavior!
i see, for example,
this code is error with node. because step17 is written by
If mode is "navigate", then throw a TypeError.
but, deno is not error. Could this be related to the fact that it doesn't handle referrers?I think so
ok, thank you!