Skip to content

Instantly share code, notes, and snippets.

@macdonst
Last active May 29, 2018 18:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save macdonst/bc6a66954e5e733550449d73a5dbbe89 to your computer and use it in GitHub Desktop.
Save macdonst/bc6a66954e5e733550449d73a5dbbe89 to your computer and use it in GitHub Desktop.
'use strict';
function hello(params) {
const name = params.name || 'World';
return { payload: `Hello, ${name}!` };
}
exports.hello = hello;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment