UNPKG

maestro

Version:

Maestro is a framework for quickly bootstrapping serverless orchestration workflows with AWS Step Functions

8 lines (5 loc) 153 B
const capitalize = (str) => { if (str === "") return ""; return str[0].toUpperCase() + str.slice(1).toLowerCase(); }; module.exports = capitalize;