@worker-tools/json-fetch
Advanced tools
Comparing version 2.1.0-pre.1 to 2.1.0-pre.2
@@ -7,3 +7,3 @@ // This could be it's own module... | ||
? params | ||
: Object.entries(params ?? {}); | ||
: Object.entries(params !== null && params !== void 0 ? params : {}); | ||
for (const [k, v] of iterable) | ||
@@ -10,0 +10,0 @@ this.searchParams.append(k, v); |
@@ -6,3 +6,3 @@ { | ||
"name": "@worker-tools/json-fetch", | ||
"version": "2.1.0-pre.1", | ||
"version": "2.1.0-pre.2", | ||
"description": "A drop-in replacements for fetch, Request, and Response with first class support for JSON objects.", | ||
@@ -23,3 +23,6 @@ "license": "MIT", | ||
"keywords": [ | ||
"deno", | ||
"fetch", | ||
"fetch-api", | ||
"http", | ||
"json", | ||
@@ -26,0 +29,0 @@ "request", |
@@ -10,3 +10,3 @@ "use strict"; | ||
? params | ||
: Object.entries(params ?? {}); | ||
: Object.entries(params !== null && params !== void 0 ? params : {}); | ||
for (const [k, v] of iterable) | ||
@@ -13,0 +13,0 @@ this.searchParams.append(k, v); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
21277
2