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.2.7 to 0.2.8

2

lib/archivers/archive-entry.js

@@ -6,3 +6,3 @@ /**

* Licensed under the MIT license.
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
*/

@@ -9,0 +9,0 @@ var ArchiveEntry = module.exports = function() {};

@@ -6,3 +6,3 @@ /**

* Licensed under the MIT license.
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
*/

@@ -9,0 +9,0 @@ var inherits = require('util').inherits;

@@ -6,3 +6,3 @@ /**

* Licensed under the MIT license.
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
*/

@@ -56,3 +56,3 @@ module.exports = {

// Unix file types
S_IFMT: 0170000, // type of file mask
S_IFMT: 0170000, // type of file mask
S_IFIFO: 010000, // named pipe (fifo)

@@ -59,0 +59,0 @@ S_IFCHR: 020000, // character special

@@ -6,3 +6,3 @@ /**

* Licensed under the MIT license.
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
*/

@@ -9,0 +9,0 @@ var zipUtil = require('./util');

@@ -6,3 +6,3 @@ /**

* Licensed under the MIT license.
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
*/

@@ -13,3 +13,3 @@ var Int64 = require('node-int64');

util.dateToDos = function(d) {
var year = d.getFullYear();
var year = d.getUTCFullYear();

@@ -24,7 +24,7 @@ if (year < 1980) {

year: year,
month: d.getMonth(),
date: d.getDate(),
hours: d.getHours(),
minutes: d.getMinutes(),
seconds: d.getSeconds()
month: d.getUTCMonth(),
date: d.getUTCDate(),
hours: d.getUTCHours(),
minutes: d.getUTCMinutes(),
seconds: d.getUTCSeconds()
};

@@ -31,0 +31,0 @@

@@ -6,3 +6,3 @@ /**

* Licensed under the MIT license.
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
*/

@@ -9,0 +9,0 @@ var inherits = require('util').inherits;

@@ -6,3 +6,3 @@ /**

* Licensed under the MIT license.
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
*/

@@ -9,0 +9,0 @@ var inherits = require('util').inherits;

@@ -6,3 +6,3 @@ /**

* Licensed under the MIT license.
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
*/

@@ -9,0 +9,0 @@ module.exports = {

@@ -6,3 +6,3 @@ /**

* Licensed under the MIT license.
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
*/

@@ -9,0 +9,0 @@ var Stream = require('stream').Stream;

{
"name": "compress-commons",
"version": "0.2.7",
"version": "0.2.8",
"description": "a library that defines a common interface for working with archive formats within node",

@@ -41,5 +41,5 @@ "homepage": "https://github.com/archiverjs/node-compress-commons",

"devDependencies": {
"chai": "~1.10.0",
"mocha": "~2.0.1",
"rimraf": "~2.2.8",
"chai": "~2.1.0",
"mocha": "~2.2.0",
"rimraf": "~2.3.0",
"mkdirp": "~0.5.0"

@@ -51,3 +51,6 @@ },

"archive"
]
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}

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

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

@@ -3,0 +3,0 @@ Compress Commons is a library that defines a common interface for working with archive formats 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