Skip to main content
Deno 2 is finally here 🎉️
Learn more

fitch

deno_local_file_fetch + HEAD request!

This polyfills file:// support for fetch

How to use

import "./polyfill.ts";
fetch(new URL("./fixtures/test.json",import.meta.url));
fetch(new URL("./fixtures/test.json",import.meta.url),{method:'head'});

We will repalce window.fetch to our fetch;