Comparing version 5.0.13 to 5.0.14
@@ -559,2 +559,3 @@ // Approach: | ||
switch (er.code) { | ||
case 'ENOTSUP': // https://github.com/isaacs/node-glob/issues/205 | ||
case 'ENOTDIR': // totally normal. means it *does* exist. | ||
@@ -561,0 +562,0 @@ this.cache[this._makeAbs(f)] = 'FILE' |
@@ -5,3 +5,3 @@ { | ||
"description": "a little globber", | ||
"version": "5.0.13", | ||
"version": "5.0.14", | ||
"repository": { | ||
@@ -40,5 +40,5 @@ "type": "git", | ||
"prof": "bash prof.sh && cat profile.txt", | ||
"benchclean": "bash benchclean.sh" | ||
"benchclean": "node benchclean.js" | ||
}, | ||
"license": "ISC" | ||
} |
@@ -60,3 +60,3 @@ module.exports = globSync | ||
p = self._makeAbs(p) | ||
var real = fs.realpathSync(p, this.realpathCache) | ||
var real = fs.realpathSync(p, self.realpathCache) | ||
set[real] = true | ||
@@ -307,2 +307,3 @@ } catch (er) { | ||
switch (er.code) { | ||
case 'ENOTSUP': // https://github.com/isaacs/node-glob/issues/205 | ||
case 'ENOTDIR': // totally normal. means it *does* exist. | ||
@@ -309,0 +310,0 @@ this.cache[this._makeAbs(f)] = 'FILE' |
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
53436
1199