UNPKG

serverless

Version:

Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more

9 lines (6 loc) 146 B
'use strict'; function hello(params) { const name = params.name || 'World'; return { payload: `Hello, ${name}!` }; } exports.hello = hello;