netlify-cli
Version:
Netlify command line tool
13 lines (10 loc) • 350 B
JavaScript
export default async (request, context) => {
const url = new URL(request.url)
// Look for the query parameter, and return if we don't find it
if (url.searchParams.get('method') !== 'transform') {
return
}
const response = await context.next()
const text = await response.text()
return new Response(text.toUpperCase(), response)
}