Skip to content

Commit

Permalink
Update ExtractIPAddresses.mjs
Browse files Browse the repository at this point in the history
Edit other linting mistakes
  • Loading branch information
h45h-1nclud3 committed Jun 22, 2023
1 parent dde88f8 commit e91fe5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/operations/ExtractIPAddresses.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ class ExtractIPAddresses extends Operation {
let ips = "";


if (includeIpv4 && includeDefangedIpv4 && includeIpv6){
if (includeIpv4 && includeDefangedIpv4 && includeIpv6) {
ips = ipv4 + "|" + ipv4Defanged + "|" + ipv6;
} else if (includeIpv4 && includeDefangedIpv4){
} else if (includeIpv4 && includeDefangedIpv4) {
ips = ipv4 + "|" + ipv4Defanged;
} else if (includeIpv4 && includeIpv6) {
ips = ipv4 + "|" + ipv6;
Expand Down

0 comments on commit e91fe5b

Please sign in to comment.