UNPKG

@0xobelisk/rooch-client

Version:
4 lines (3 loc) 124 B
export function capitalizeFirstLetter(input: string): string { return input.charAt(0).toUpperCase() + input.slice(1); }