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.1 to 2.1.0-pre.2

2

esm/search-params-url.js

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

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