homebridge-soundtouch-platform
Version:
Homebridge SoundTouch platform
11 lines • 372 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.stringUpperCaseFirst = void 0;
function stringUpperCaseFirst(str) {
if (str.length > 0) {
return str.charAt(0).toUpperCase() + str.slice(1).toLowerCase();
}
return str;
}
exports.stringUpperCaseFirst = stringUpperCaseFirst;
//# sourceMappingURL=string-uc-first.js.map