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

tar

Package Overview
Dependencies
Maintainers
9
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tar - npm Package Compare versions

Comparing version 5.0.1 to 5.0.2

3

lib/get-write-flag.js

@@ -16,2 +16,3 @@ // Get the appropriate flag to use for creating files

const fMapFlag = UV_FS_O_FILEMAP | O_TRUNC | O_CREAT | O_WRONLY
module.exports = size => (fMapEnabled && size < fMapLimit) ? fMapFlag : 'w'
module.exports = !fMapEnabled ? () => 'w'
: size => size < fMapLimit ? fMapFlag : 'w'

@@ -5,3 +5,3 @@ {

"description": "tar for node",
"version": "5.0.1",
"version": "5.0.2",
"repository": {

@@ -21,7 +21,7 @@ "type": "git",

"chownr": "^1.1.3",
"fs-minipass": "^1.2.7",
"minipass": "^2.9.0",
"minizlib": "^1.2.2",
"fs-minipass": "^2.0.0",
"minipass": "^3.0.0",
"minizlib": "^2.0.0",
"mkdirp": "^0.5.0",
"yallist": "^3.0.3"
"yallist": "^4.0.0"
},

@@ -34,3 +34,3 @@ "devDependencies": {

"rimraf": "^2.7.1",
"tap": "^14.6.5",
"tap": "^14.6.9",
"tar-fs": "^1.16.3",

@@ -41,3 +41,3 @@ "tar-stream": "^1.6.2"

"engines": {
"node": ">=8"
"node": ">= 8"
},

@@ -44,0 +44,0 @@ "files": [

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