iceshrimp-legacy/src/prelude/string.ts
2018-09-12 06:33:02 +09:00

12 lines
264 B
TypeScript

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