UNPKG

@builder.io/mitosis

Version:

Write components once, run everywhere. Compiles to Vue, React, Solid, and Liquid. Import code from Figma and Builder.io

11 lines (10 loc) 262 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.capitalize = void 0; const capitalize = (str) => { if (!str) { return str; } return str[0].toUpperCase() + str.slice(1); }; exports.capitalize = capitalize;