UNPKG

@technobuddha/library

Version:
11 lines (10 loc) 373 B
/** * Capitalize the first letter of a string * @param input The string to capitalize * @param __namedParameters see {@link Options} * @default lowerCase default */ export function toCapitalCase(input, { lowerCase = false } = {}) { return input.charAt(0).toUpperCase() + (lowerCase ? input.slice(1).toLowerCase() : input.slice(1)); } export default toCapitalCase;