Using Chalk for Console Logging in Effect.tap
is chalk considered as side effect or we can use directly inside
Effect.tap ?Effect.tapEffect.tap(() =>
Effect.sync(() => {
const { hostname } = new URL(matchUrl);
console.log(chalk.gray("->"), chalk[color](`Visiting ${hostname} done!`));
})
),