Skip to content

Instantly share code, notes, and snippets.

View keithbrink's full-sized avatar

Keith Brink keithbrink

  • Hamilton, ON
View GitHub Profile
@availit
availit / cloudflare-worker-force-lowercase.js
Created October 29, 2018 21:18
Cloudflare worker script to rewrite requests to lowercase, to prevent duplicate page URLs
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request))
})
/**
* Fetch and log a request
* @param {Request} request
*/
async function handleRequest(request) {
let url = request.url