homebridge-soundtouch-plugins
Version:
Homebridge SoundTouch plugins
10 lines • 372 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.stringUpperCaseFirst = void 0;
var stringUpperCaseFirst = function (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