mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-20 05:39:37 +02: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}
|