Socket
Socket
Sign inDemoInstall

get-stream

Package Overview
Dependencies
Maintainers
2
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

get-stream - npm Package Compare versions

Comparing version 2.3.0 to 2.3.1

5

index.js

@@ -30,3 +30,6 @@ 'use strict';

clean = function () {
inputStream.unpipe(stream);
// some streams doesn't implement the stream.Readable interface correctly
if (inputStream.unpipe) {
inputStream.unpipe(stream);
}
};

@@ -33,0 +36,0 @@

2

package.json
{
"name": "get-stream",
"version": "2.3.0",
"version": "2.3.1",
"description": "Get a stream as a string, buffer, or array",

@@ -5,0 +5,0 @@ "license": "MIT",

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc