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

compressing

Package Overview
Dependencies
Maintainers
3
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

compressing - npm Package Compare versions

Comparing version 1.10.0 to 1.10.1

4

lib/zip/uncompress_stream.js

@@ -101,4 +101,4 @@ 'use strict';

}
// directory file names end with '/'
const type = /\/$/.test(entry.fileName) ? 'directory' : 'file';
// directory file names end with '/' (for Linux and macOS) or '\' (for Windows)
const type = /[\\\/]$/.test(entry.fileName) ? 'directory' : 'file';
const name = entry.fileName = this[STRIP_NAME](entry.fileName, type);

@@ -105,0 +105,0 @@

{
"name": "compressing",
"version": "1.10.0",
"version": "1.10.1",
"description": "Everything you need for compressing and uncompressing",

@@ -8,8 +8,9 @@ "main": "index.js",

"contributor": "git-contributor",
"ts-test": "tsc -p ./test/fixtures/types/tsconfig.json",
"test": "egg-bin test --ts false && npm run ts-test",
"test:ts": "tsc -p ./test/fixtures/types/tsconfig.json",
"test:js": "egg-bin test --ts false",
"test": "npm run test:js && npm run test:ts",
"cov": "egg-bin cov --ts false",
"lint-fix": "eslint . --fix",
"lint": "eslint .",
"ci": "npm run lint && npm run ts-test && npm run cov"
"ci": "npm run lint && npm run test:ts && npm run cov"
},

@@ -16,0 +17,0 @@ "repository": {

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