Skip to content

Instantly share code, notes, and snippets.

@nfons
Created January 25, 2018 13:55
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 nfons/b1c80fac05847d9fbd1181000087560b to your computer and use it in GitHub Desktop.
Save nfons/b1c80fac05847d9fbd1181000087560b to your computer and use it in GitHub Desktop.
var out = Date.now();
exports.handler = (event, context, callback) => {
// TODO implement
var intime = Date.now();
console.log(out);
console.log(intime);
callback(null, 'Hello from Lambda');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment