Socket
Socket
Sign inDemoInstall

zip

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zip - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

CHANGES.md

9

package.json
{
"name": "zip",
"version": "0.0.4",
"description": "An implementation of unzip for JavaScript",
"version": "0.0.3",
"keywords": [

@@ -26,5 +26,2 @@ "zip",

"main": "zip.js",
"modules": {
"inflate": "./lib/inflate.js"
},
"repository": {

@@ -35,4 +32,4 @@ "type": "git",

"dependencies": {
"q": "0.2.10",
"q-io": "0.0.4",
"q": "0.7.1",
"q-io": "0.0.8",
"q-io-buffer": "0.0.0"

@@ -39,0 +36,0 @@ },

// Tom Robinson
// Kris Kowal
var INFLATE = require("./lib/inflate");
var INFLATE = require("./inflate");
var Buffer = require("buffer").Buffer;

@@ -12,2 +12,4 @@

var Reader = exports.Reader = function (data) {
if (!(this instanceof Reader))
return new Reader(data);
this._data = data;

@@ -14,0 +16,0 @@ this._offset = 0;

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