Socket
Socket
Sign inDemoInstall

progress-stream

Package Overview
Dependencies
10
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.0 to 1.0.1

5

index.js

@@ -79,4 +79,5 @@ var through = require('through2');

stream.on('response', function(res) {
if (res && res.headers['content-encoding'] === 'gzip') return;
if (res && res.headers && res.headers['content-length']) {
if (!res || !res.headers) return;
if (res.headers['content-encoding'] === 'gzip') return;
if (res.headers['content-length']) {
return onlength(parseInt(res.headers['content-length']));

@@ -83,0 +84,0 @@ }

2

package.json
{
"name": "progress-stream",
"version": "1.0.0",
"version": "1.0.1",
"description": "Read the progress of a stream",

@@ -5,0 +5,0 @@ "repository": {

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc