This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const cloudflareTrace = async () => { | |
try { | |
const response = await fetch('https://www.cloudflare.com/cdn-cgi/trace') | |
const rawData = await response.text(); | |
const jsonData = Object.fromEntries( | |
rawData.trim() | |
.split('\n') | |
.map(line => line.split('=')) | |
); | |
return jsonData; |