Skip to content

Commit

Permalink
chore: remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
VisargD committed Dec 28, 2024
1 parent b5719a4 commit 6d2f40d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/default/validUrls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const handler: PluginHandler = async (
// https?:\/\/ - matches http or https
// [^\s,"'{}\[\]]+ - matches any characters that are not whitespace, comma, single quote, curly brace, or square bracket
const urls = content.match(/https?:\/\/[^\s,"'{}\[\]]+/g) || [];
console.log('urls', urls);

const onlyDNS = parameters.onlyDNS || false;

if (urls.length === 0) {
Expand Down

0 comments on commit 6d2f40d

Please sign in to comment.