Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@samchon/openapi

Package Overview
Dependencies
Maintainers
1
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@samchon/openapi - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2-dev.20240917

9

lib/http/HttpMigrateRouteFetcher.js

@@ -323,9 +323,6 @@ "use strict";

return;
else if (value instanceof Blob)
if (value instanceof File)
encoded.append(key, value, value.name);
else
encoded.append(key, value);
else if (typeof File === "function" && value instanceof File)
encoded.append(key, value, value.name);
else
encoded.append(key, String(value));
encoded.append(key, value);
}; };

@@ -332,0 +329,0 @@ try {

{
"name": "@samchon/openapi",
"version": "1.0.1",
"version": "1.0.2-dev.20240917",
"description": "OpenAPI definitions and converters for 'typia' and 'nestia'.",

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

@@ -180,6 +180,5 @@ import type { HttpMigration } from "../HttpMigration";

if (value === undefined) return;
else if (value instanceof Blob)
if (value instanceof File) encoded.append(key, value, value.name);
else encoded.append(key, value);
else encoded.append(key, String(value));
else if (typeof File === "function" && value instanceof File)
encoded.append(key, value, value.name);
else encoded.append(key, value);
};

@@ -186,0 +185,0 @@ for (const [key, value] of Object.entries(input))

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