graceful-fs
Advanced tools
Comparing version 4.1.5 to 4.1.6
{ | ||
"name": "graceful-fs", | ||
"description": "A drop-in replacement for fs, making various improvements.", | ||
"version": "4.1.5", | ||
"version": "4.1.6", | ||
"repository": { | ||
@@ -6,0 +6,0 @@ "type": "git", |
@@ -209,5 +209,5 @@ var fs = require('./fs.js') | ||
return function (target, mode, cb) { | ||
return orig.call(fs, target, mode, function (er, res) { | ||
return orig.call(fs, target, mode, function (er) { | ||
if (chownErOk(er)) er = null | ||
if (cb) cb(er, res) | ||
if (cb) cb.apply(this, arguments) | ||
}) | ||
@@ -232,5 +232,5 @@ } | ||
return function (target, uid, gid, cb) { | ||
return orig.call(fs, target, uid, gid, function (er, res) { | ||
return orig.call(fs, target, uid, gid, function (er) { | ||
if (chownErOk(er)) er = null | ||
if (cb) cb(er, res) | ||
if (cb) cb.apply(this, arguments) | ||
}) | ||
@@ -237,0 +237,0 @@ } |
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
23048