UNPKG

@tetcoin/util

Version:
16 lines (15 loc) 359 B
/** * @name stringUpperFirst * @summary Lowercase the first letter of a string * @description * Lowercase the first letter of a string * @example * <BR> * * ```javascript * import { stringUpperFirst } from '@tetcoin/util'; * * stringUpperFirst('abc'); // => 'Abc' * ``` */ export default function stringUpperFirst(value?: string | null): string;