UNPKG

@coorpacademy/baucis-openapi3

Version:

Generate customizable OpenAPI version 3.0.0 definitions for your Baucis REST API.

17 lines (14 loc) 286 B
// Module with custom functions // A method for capitalizing the first letter of a string function capitalize(s) { if (!s) { return s; } if (s.length === 1) { return s.toUpperCase(); } return s[0].toUpperCase() + s.substring(1); } module.exports = { capitalize };