iceshrimp/src/prelude/string.ts
2018-09-12 03:51:33 +09:00

7 lines
188 B
TypeScript

export function capitalize(s: string): string {
return toUpperCase(s.charAt(0)) + s.slice(1).toLowerCase();
}
export function toUpperCase(s: string): string {
return s.toUpperCase();
}