Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/@npmcli/arborist/lib/edge.js')
-rw-r--r--deps/npm/node_modules/@npmcli/arborist/lib/edge.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/edge.js b/deps/npm/node_modules/@npmcli/arborist/lib/edge.js
index 0bd9021d56a..9d5ece40e5f 100644
--- a/deps/npm/node_modules/@npmcli/arborist/lib/edge.js
+++ b/deps/npm/node_modules/@npmcli/arborist/lib/edge.js
@@ -77,7 +77,7 @@ class Edge {
}
satisfiedBy (node) {
- return depValid(node, this.spec, this.accept, this.from)
+ return node.name === this.name && depValid(node, this.spec, this.accept, this.from)
}
explain (seen = []) {
@@ -167,7 +167,7 @@ class Edge {
[_loadError] () {
return !this[_to] ? (this.optional ? null : 'MISSING')
: this.peer && this.from === this.to.parent && !this.from.isTop ? 'PEER LOCAL'
- : !depValid(this.to, this.spec, this.accept, this.from) ? 'INVALID'
+ : !this.satisfiedBy(this.to) ? 'INVALID'
: 'OK'
}