Socket
Socket
Sign inDemoInstall

@aws-sdk/middleware-sdk-s3

Package Overview
Dependencies
Maintainers
5
Versions
196
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/middleware-sdk-s3 - npm Package Compare versions

Comparing version 3.629.0 to 3.633.0

4

dist-cjs/index.js

@@ -540,2 +540,6 @@ "use strict";

}
const isSplittableStream = typeof (sourceBody == null ? void 0 : sourceBody.stream) === "function" || typeof (sourceBody == null ? void 0 : sourceBody.pipe) === "function" || typeof (sourceBody == null ? void 0 : sourceBody.tee) === "function";
if (!isSplittableStream) {
return result;
}
let bodyCopy = sourceBody;

@@ -542,0 +546,0 @@ let body = sourceBody;

@@ -19,2 +19,8 @@ import { HttpResponse } from "@smithy/protocol-http";

}
const isSplittableStream = typeof sourceBody?.stream === "function" ||
typeof sourceBody?.pipe === "function" ||
typeof sourceBody?.tee === "function";
if (!isSplittableStream) {
return result;
}
let bodyCopy = sourceBody;

@@ -21,0 +27,0 @@ let body = sourceBody;

2

package.json
{
"name": "@aws-sdk/middleware-sdk-s3",
"version": "3.629.0",
"version": "3.633.0",
"scripts": {

@@ -5,0 +5,0 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",

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