Skip to content

Instantly share code, notes, and snippets.

@macdonst
Created July 9, 2018 17:26
Show Gist options
  • Save macdonst/ca3de407bd53af3a58cb2ce24079c90a to your computer and use it in GitHub Desktop.
Save macdonst/ca3de407bd53af3a58cb2ce24079c90a to your computer and use it in GitHub Desktop.
const leftPad = require('left-pad');
function main(args) {
const name = args.name || 'World';
return { payload: `Hello, ${leftPad(name, 30, ".")}!` };
}
global.main = main;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment