Skip to content

Instantly share code, notes, and snippets.

View mhazgui's full-sized avatar

Montassar Billeh Hazgui mhazgui

View GitHub Profile
@mhazgui
mhazgui / gist:bf186732c30497d9462da93bc42e01a1
Created April 22, 2020 20:01
Cloudflare js worker allow list of countries and block the rest
addEventListener('fetch', event => {
event.respondWith(blockCountries(event.request))
})
//Add countries to this Set to Allow them
const countries = new Set([
"US", // United States
"SG", // Singapore
"BR" // Brazil
])