UNPKG

wix-style-react

Version:
15 lines (12 loc) 267 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.capitalize = capitalize; /** Capitalize first character */ function capitalize(str) { if (!str) { return undefined; } return str[0].toUpperCase() + str.substring(1); }