Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
popeeyy committed Dec 2, 2022
1 parent 333001c commit a9eb2d3
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/parsers.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,17 @@ const parseDomainWhois = (domain, whois) => {

// Parse WHOIS info for specific TLDs

if (domain.endsWith('.uk') || domain.endsWith('.be') || domain.endsWith('.nl') || domain.endsWith('.eu') || domain.endsWith('.ly') || domain.endsWith('.mx') || domain.endsWith('.gg') || domain.endsWith('.je') || domain.endsWith('.as')) {
if (
domain.endsWith('.uk') ||
domain.endsWith('.be') ||
domain.endsWith('.nl') ||
domain.endsWith('.eu') ||
domain.endsWith('.ly') ||
domain.endsWith('.mx') ||
domain.endsWith('.gg') ||
domain.endsWith('.je') ||
domain.endsWith('.as')
) {
lines = handleMultiLines(lines)
}

Expand Down

0 comments on commit a9eb2d3

Please sign in to comment.