realpath-native
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -35,3 +35,7 @@ 'use strict'; | ||
if (fsBinding.realpath) { | ||
return process.binding('fs').realpath(filepath, 'utf8'); | ||
try { | ||
return fsBinding.realpath(filepath, 'utf8'); | ||
} catch (err) { | ||
/* Probably RAM-disk on windows. */ | ||
} | ||
} | ||
@@ -38,0 +42,0 @@ |
{ | ||
"name": "realpath-native", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"main": "index.js", | ||
@@ -5,0 +5,0 @@ "files": [ |
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
4570
36