"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = (text) => { return text.charAt(0).toUpperCase() + text.slice(1); };