Comparing version 1.8.1 to 1.9.0
@@ -66,3 +66,3 @@ var tar = require('tar-stream') | ||
var fmode = typeof opts.fmode === 'number' ? opts.fmode : 0 | ||
var pack = tar.pack() | ||
var pack = opts.pack || tar.pack() | ||
@@ -168,3 +168,3 @@ if (opts.strip) map = strip(map, opts.strip) | ||
var own = opts.chown !== false && !win32 && processGetuid() === 0 | ||
var extract = tar.extract() | ||
var extract = opts.extract || tar.extract() | ||
var stack = [] | ||
@@ -171,0 +171,0 @@ var now = new Date() |
{ | ||
"name": "tar-fs", | ||
"version": "1.8.1", | ||
"version": "1.9.0", | ||
"description": "filesystem bindings for tar-stream", | ||
@@ -5,0 +5,0 @@ "dependencies": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18730