Fixes the case that the instrumentation defaulted to GET in case undefined was parsed as a second fetch argument.
const request = new Request("https://httpbin.org/post", { method: "POST" });
const response = await fetch(request, undefined); <-- will be GET (should be POST)