UNPKG

oauth-v2-client

Version:
9 lines (8 loc) 251 B
/** * Put the first later of the string in capital letter * @param value value to update */ export function capitalize(value?: string) { if (typeof value !== "string") return ""; return value.charAt(0).toUpperCase() + value.slice(1); }