@worker-tools/json-fetch
Advanced tools
Comparing version 2.1.0-pre.3 to 2.1.0-pre.4
@@ -14,3 +14,3 @@ // This could be it's own module... | ||
for (const [k, v] of iterable) | ||
this.searchParams.append(k, v.toString()); | ||
this.searchParams.append(k, '' + v); | ||
} | ||
@@ -17,0 +17,0 @@ } |
@@ -6,3 +6,3 @@ { | ||
"name": "@worker-tools/json-fetch", | ||
"version": "2.1.0-pre.3", | ||
"version": "2.1.0-pre.4", | ||
"description": "A drop-in replacements for fetch, Request, and Response with first class support for JSON objects.", | ||
@@ -21,3 +21,3 @@ "license": "MIT", | ||
}, | ||
"homepage": "https://workers.tools/#json-fetch", | ||
"homepage": "https://workers.tools/json-fetch", | ||
"keywords": [ | ||
@@ -24,0 +24,0 @@ "deno", |
@@ -17,3 +17,3 @@ "use strict"; | ||
for (const [k, v] of iterable) | ||
this.searchParams.append(k, v.toString()); | ||
this.searchParams.append(k, '' + v); | ||
} | ||
@@ -20,0 +20,0 @@ } |
@@ -21,3 +21,3 @@ // deno-lint-ignore no-explicit-any | ||
for (const [k, v] of iterable) | ||
this.searchParams.append(k, v.toString()); | ||
this.searchParams.append(k, '' + v); | ||
} | ||
@@ -24,0 +24,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
22297