UNPKG

@goa/goa

Version:

The Goa Source Code For Compilation Into @Goa/Koa That Includes Modules, Tests, Types And Dependencies.

10 lines (9 loc) 271 B
import Goa from '../../../src' const goa = new Goa() goa.use((ctx) => { /* start example */ ctx.request.get('Content-Type') // => "text/plain" ctx.request.get('content-type') // => "text/plain" ctx.request.get('Something') // => undefined /* end example */ })