New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@worker-tools/json-fetch

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@worker-tools/json-fetch - npm Package Compare versions

Comparing version 2.1.0-pre.3 to 2.1.0-pre.4

2

esm/search-params-url.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc