Skip to content

Commit

Permalink
fix(isSIP): remove console.log from isSIP.js
Browse files Browse the repository at this point in the history
  • Loading branch information
aabdullaharif authored Sep 29, 2024
1 parent b21f974 commit d00c7f7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib/isSIP.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ function isValidPort(domain) {
const portMatch = domain.match(/:(\d+)($|;)/);
if (portMatch) {
const port = parseInt(portMatch[1], 10);
console.log(port);
return !isNaN(port) && port > 0 && port <= 65535;
}
return true;
Expand Down

0 comments on commit d00c7f7

Please sign in to comment.