UNPKG

homebridge-soundtouch-platform

Version:
11 lines 372 B
"use strict"; 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