UNPKG

tgapi

Version:

Actual Telegram bot API JS implementation

4 lines (2 loc) 94 B
/* @flow */ export const toUpperFirst = (str: string) => str[0].toUpperCase() + str.slice(1)