Fix fetch methods

This commit is contained in:
2023-05-24 14:08:26 -04:00
parent d379b1741d
commit 653cd1f3cb
+1 -1
View File
@@ -1,6 +1,6 @@
import Remote from "../../polyfill/remote";
const methods = new Set(["GET" | "PUT" | "POST" | "DELETE"]);
const methods = new Set(["GET", "PUT", "POST", "DELETE"]);
class FetchResponse extends Response {
constructor(options) {