Update checked-in dependencies
This commit is contained in:
parent
79817eb679
commit
9c3b394d7f
402 changed files with 12598 additions and 2912 deletions
8
node_modules/@humanwhocodes/config-array/api.js
generated
vendored
8
node_modules/@humanwhocodes/config-array/api.js
generated
vendored
|
|
@ -825,12 +825,12 @@ class ConfigArray extends Array {
|
|||
const cache = this[ConfigArraySymbol.configCache];
|
||||
|
||||
// first check the cache for a filename match to avoid duplicate work
|
||||
let finalConfig = cache.get(filePath);
|
||||
|
||||
if (finalConfig) {
|
||||
return finalConfig;
|
||||
if (cache.has(filePath)) {
|
||||
return cache.get(filePath);
|
||||
}
|
||||
|
||||
let finalConfig;
|
||||
|
||||
// next check to see if the file should be ignored
|
||||
|
||||
// check if this should be ignored due to its directory
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue