UNPKG

wix-style-react

Version:
8 lines 211 B
/** Capitalize first character */ export function capitalize(str) { if (!str) { return undefined; } return str[0].toUpperCase() + str.substring(1); } //# sourceMappingURL=cssClassUtils.js.map