deemix-webui/src/utils/texts.js
2020-09-26 21:10:40 +02:00

5 lines
142 B
JavaScript

/**
* @param {string} text
*/
export const upperCaseFirstLowerCaseRest = text => text.charAt(0).toUpperCase() + text.slice(1).toLowerCase()