UNPKG

@bangbu/ts-utils

Version:

Utility functions and constants for Cyberk

10 lines 314 B
// capitalize first character of each word in a string export function capitalize(str) { if (!str || typeof str !== "string") return str; return str .split(" ") .map((word) => word.charAt(0).toUpperCase() + word.slice(1)) .join(" "); } //# sourceMappingURL=capitalize.js.map