```ts export default { async fetch() { return new Response(`You are hitting ${(

export default {
    async fetch() {
        return new Response(`You are hitting ${(
            await (await fetch("https://1.1.1.1/cdn-cgi/trace")).text()
        ).match(/^colo=(.+)/m)[1]} via Quad1.`)
    }
}
works on https://workers.cloudflare.com/playground?name=quad-fun
Was this page helpful?