Skip to content

Instantly share code, notes, and snippets.

@recidive
Last active February 24, 2018 15:52
Show Gist options
  • Save recidive/9f636880b0c5f7595416e7613fda33b1 to your computer and use it in GitHub Desktop.
Save recidive/9f636880b0c5f7595416e7613fda33b1 to your computer and use it in GitHub Desktop.
Functional JS
const respond = body => ctx.body = body && body
const handler = respond('Hello World')
const handler = async ctx => {
ctx.body = `Hello World`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment