mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2026-07-13 21:52:53 +02:00
8 lines
225 B
TypeScript
8 lines
225 B
TypeScript
export function capitalizeFirstLetter({ string }: { string: string }) {
|
|
return string.charAt(0).toUpperCase() + string.slice(1);
|
|
}
|
|
|
|
export function uppercase({ string }: { string: string }) {
|
|
return string.toUpperCase();
|
|
}
|