mirror of
https://gitlab.com/RemixDev/deemix-webui.git
synced 2025-01-31 18:28:30 +00:00
5 lines
142 B
JavaScript
5 lines
142 B
JavaScript
/**
|
|
* @param {string} text
|
|
*/
|
|
export const upperCaseFirstLowerCaseRest = text => text.charAt(0).toUpperCase() + text.slice(1).toLowerCase()
|