Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

zip

kriskowal84.7k1.2.0

An implementation of unzip for JavaScript

zip, compression

readme

var ZIP = require("zip");
var data = new Buffer(...);
var reader = ZIP.Reader(data);
reader.toObject(charset_opt);
reader.forEach(function (entry) {});
reader.iterator();

Copyright 1999 Masanao Izumo iz@onicos.co.jp License Unknown Copyright 2010 Tom Robinson (http://tlrobinson.net/) MIT License (enclosed) Copyright 2011 Kristopher Michael Kowal MIT License (enclosed)

changelog

1.1.1

  • Added getMode function to be able to use fs.chmod on darwin and linux

0.0.4

  • Updated dependencies.
  • Reader no longer requires new keyword
  • inflate module now at the root

0.0.3

  • Fixed for NPM 1.0

0.0.2

  • Removed a spurious buffer-io file that was confusing the new Node module search algorithm.

0.0.1

  • fixed a dependency on q-io

0.0.0