Socket
Socket
Sign inDemoInstall

compress-commons

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

compress-commons - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

6

lib/archivers/zip/zip-archive-output-stream.js

@@ -10,4 +10,4 @@ /**

var crc32 = require('buffer-crc32');
var ChecksumStream = require('crc32-stream');
var DeflateCRC32Stream = require('deflate-crc32-stream');
var CRC32Stream = require('crc32-stream');
var DeflateCRC32Stream = CRC32Stream.DeflateCRC32Stream;

@@ -136,3 +136,3 @@ var ArchiveOutputStream = require('../archive-output-stream');

var deflate = ae.getMethod() === constants.METHOD_DEFLATED;
var process = deflate ? new DeflateCRC32Stream(this.options.zlib) : new ChecksumStream();
var process = deflate ? new DeflateCRC32Stream(this.options.zlib) : new CRC32Stream();

@@ -139,0 +139,0 @@ function handleStuff(err) {

{
"name": "compress-commons",
"version": "0.1.2",
"version": "0.1.3",
"description": "a library that defines a common interface for working with archives within node",

@@ -36,4 +36,3 @@ "homepage": "https://github.com/ctalkington/node-compress-commons",

"buffer-crc32": "~0.2.1",
"crc32-stream": "~0.2.0",
"deflate-crc32-stream": "~0.1.0",
"crc32-stream": "~0.3.1",
"readable-stream": "~1.0.26"

@@ -40,0 +39,0 @@ },

@@ -1,2 +0,2 @@

# Compress Commons v0.1.2 [![Build Status](https://travis-ci.org/ctalkington/node-compress-commons.svg?branch=master)](https://travis-ci.org/ctalkington/node-compress-commons)
# Compress Commons v0.1.3 [![Build Status](https://travis-ci.org/ctalkington/node-compress-commons.svg?branch=master)](https://travis-ci.org/ctalkington/node-compress-commons)

@@ -3,0 +3,0 @@ Compress Commons is a library that defines a common interface for working with archives within node.

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