Skip to content

Instantly share code, notes, and snippets.

@dansalias
Last active November 18, 2019 21:29
Show Gist options
  • Save dansalias/eb1ba98397f82ba98f991bb7e1d103d0 to your computer and use it in GitHub Desktop.
Save dansalias/eb1ba98397f82ba98f991bb7e1d103d0 to your computer and use it in GitHub Desktop.
Lambda Testing Example - capitalise.js
const changeCase = require('change-case');
exports.handler = async function(event) {
const result = { success: false, name: '' };
if(event.name) {
result.name = changeCase.titleCase(event.name);
result.success = true;
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment