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
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 | |
]) |
NewerOlder