mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 14:56:17 -04:00
6 lines
104 B
TypeScript
6 lines
104 B
TypeScript
![]() |
function capitalise(s: string) {
|
||
|
return s.charAt(0).toUpperCase() + s.slice(1)
|
||
|
}
|
||
|
|
||
|
export {capitalise}
|