Fix fetch methods

This commit is contained in:
Zack Rauen 2023-05-24 14:08:26 -04:00
parent bc6a0632de
commit 8386da0722
1 changed files with 1 additions and 1 deletions

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) {