UNPKG

homebridge-soundtouch-plugins

Version:
6 lines (5 loc) 168 B
export const stringUpperCaseFirst = (str: string): string => { if (str.length > 0) return str.charAt[0].toUpperCase() + str.slice(1).toLowerCase() return str }