export function extractTooManyRequestsInfo(html: string | undefined) { const ip = html?.match(/IP address: (.+?)
/)?.[1] || ''; const time = html?.match(/Time: (.+?)
/)?.[1] || ''; const url = (html?.match(/URL: (.+?)
/)?.[1] || '').replace(/&/g, '&'); return { ip, time, url }; }