UNPKG

kobalt

Version:

A cli to generate a theme from figma projects.

12 lines (11 loc) 332 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.capitalize = void 0; const capitalize = (word = "") => { if (word !== "") { const [first, ...rest] = word; return `${first?.toUpperCase()}${rest.join("")}`; } return word; }; exports.capitalize = capitalize;