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

hono

Package Overview
Dependencies
Maintainers
1
Versions
349
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hono - npm Package Compare versions

Comparing version 2.5.1 to 2.5.2

8

dist/cjs/request.js

@@ -34,5 +34,9 @@ "use strict";

if (key) {
return this.paramData[key];
return decodeURIComponent(this.paramData[key]);
} else {
return this.paramData;
const decoded = {};
for (const [key2, value] of Object.entries(this.paramData)) {
decoded[key2] = decodeURIComponent(value);
}
return decoded;
}

@@ -39,0 +43,0 @@ }

@@ -12,5 +12,9 @@ // src/request.ts

if (key) {
return this.paramData[key];
return decodeURIComponent(this.paramData[key]);
} else {
return this.paramData;
const decoded = {};
for (const [key2, value] of Object.entries(this.paramData)) {
decoded[key2] = decodeURIComponent(value);
}
return decoded;
}

@@ -17,0 +21,0 @@ }

{
"name": "hono",
"version": "2.5.1",
"version": "2.5.2",
"description": "Ultrafast web framework for Cloudflare Workers.",

@@ -5,0 +5,0 @@ "main": "dist/cjs/index.js",

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