Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
pahud committed Dec 13, 2022
1 parent c1b5ea9 commit 6f18a71
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -340,5 +340,5 @@ function analyzeUpdate(oldProps: Partial<aws.EKS.CreateClusterRequest>, newProps
}

function setsEqual(first: Set<string>, second: Set<string>) {
return [...first].every((e: string) => second.has(e));
}
return first.size === second.size && [...first].every((e: string) => second.has(e));
}

0 comments on commit 6f18a71

Please sign in to comment.