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

yazl

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yazl - npm Package Compare versions

Comparing version 2.1.2 to 2.1.3

5

index.js

@@ -17,3 +17,4 @@ var fs = require("fs");

this.outputStreamCursor = 0;
this.ended = false;
this.ended = false; // .end() sets this
this.allDone = false; // set when we've written the last bytes
}

@@ -146,2 +147,3 @@

function pumpEntries(self) {
if (self.allDone) return;
// first check if finalSize is finally known

@@ -186,2 +188,3 @@ if (self.ended && self.finalSizeCallback != null) {

self.outputStream.end();
self.allDone = true;
}

@@ -188,0 +191,0 @@ }

2

package.json
{
"name": "yazl",
"version": "2.1.2",
"version": "2.1.3",
"description": "yet another zip library for node",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -258,2 +258,4 @@ # yazl

* 2.1.3
* Fix bug when only addBuffer() and end() are called. [issue #12](https://github.com/thejoshwolfe/yazl/issues/12)
* 2.1.2

@@ -260,0 +262,0 @@ * Fixed typo in parameter validation. [pull request #10](https://github.com/thejoshwolfe/yazl/pull/10)

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