UNPKG

kitten-components

Version:
14 lines (11 loc) 302 B
export const stringUtils = { /** * Converts the first character to uppercase. */ upcaseFirst(str) { if (!str || typeof str !== 'string') return str return str.charAt(0).toUpperCase() + str.slice(1) }, } // Prefer specific export export const upcaseFirst = stringUtils.upcaseFirst