Comparing version 1.1.0 to 1.1.1
@@ -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; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11757