graceful-fs
Advanced tools
Comparing version 4.2.8 to 4.2.9
{ | ||
"name": "graceful-fs", | ||
"description": "A drop-in replacement for fs, making various improvements.", | ||
"version": "4.2.8", | ||
"version": "4.2.9", | ||
"repository": { | ||
@@ -6,0 +6,0 @@ "type": "git", |
@@ -313,4 +313,6 @@ var constants = require('constants') | ||
: orig.call(fs, target) | ||
if (stats.uid < 0) stats.uid += 0x100000000 | ||
if (stats.gid < 0) stats.gid += 0x100000000 | ||
if (stats) { | ||
if (stats.uid < 0) stats.uid += 0x100000000 | ||
if (stats.gid < 0) stats.gid += 0x100000000 | ||
} | ||
return stats; | ||
@@ -317,0 +319,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
31596
793