UNPKG

swaggler

Version:

Swaggler helps you smuggle your existing API requests into structured, well-documented specs with ease

8 lines (7 loc) 271 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.capitalizeFirstLetter = void 0; const capitalizeFirstLetter = (str) => { return str.charAt(0).toUpperCase() + str.slice(1); }; exports.capitalizeFirstLetter = capitalizeFirstLetter;