Socket
Socket
Sign inDemoInstall

tar-fs

Package Overview
Dependencies
Maintainers
2
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tar-fs - npm Package Compare versions

Comparing version 3.0.2 to 3.0.3

5

index.js

@@ -329,3 +329,4 @@ const tar = require('tar-stream')

function statAll (fs, stat, cwd, ignore, entries, sort) {
const queue = (entries || ['.']).slice(0)
if (!entries) entries = ['.']
const queue = entries.slice(0)

@@ -340,3 +341,3 @@ return function loop (callback) {

// ignore errors if the files were deleted while buffering
if (err) return callback(err.code === 'ENOENT' ? null : err)
if (err) return callback(entries.indexOf(next) === -1 && err.code === 'ENOENT' ? null : err)

@@ -343,0 +344,0 @@ if (!stat.isDirectory()) return callback(null, next, stat)

2

package.json
{
"name": "tar-fs",
"version": "3.0.2",
"version": "3.0.3",
"description": "filesystem bindings for tar-stream",

@@ -5,0 +5,0 @@ "dependencies": {

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