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

tar-async

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tar-async - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

2

package.json

@@ -6,3 +6,3 @@ {

"keywords": ["tar", "untar", "asynchronous", "stream", "async", "chunk", "chunked"],
"version": "1.1.0",
"version": "1.1.1",
"repository": {

@@ -9,0 +9,0 @@ "type": "git",

@@ -118,3 +118,3 @@ (function () {

extraBytes = recordSize - (size % recordSize);
extraBytes = recordSize - (size % recordSize || recordSize);
this.emit('data', utils.clean(recordSize - (size % recordSize)));

@@ -135,3 +135,3 @@ this.written += extraBytes;

input.on('end', function () {
extraBytes = recordSize - (size % recordSize);
extraBytes = recordSize - (size % recordSize || recordSize);
tape.emit('data', utils.clean(extraBytes));

@@ -138,0 +138,0 @@ tape.written += extraBytes;

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