deemix-webui/src/utils/texts.js

5 lines
142 B
JavaScript
Raw Normal View History

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