UNPKG

@tetcoin/util

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