Skip to content

Instantly share code, notes, and snippets.

@macdonst
Created 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/e7ae1838042987baca0c379d12c04c34 to your computer and use it in GitHub Desktop.
Save macdonst/e7ae1838042987baca0c379d12c04c34 to your computer and use it in GitHub Desktop.
'use strict';
const leftPad = require('left-pad');
function hello(params) {
const name = params.name || 'World';
return { payload: `Hello, ${leftPad(name, 30, ".")}!` };
}
exports.hello = hello;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment