UNPKG

@goa/goa

Version:

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

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