UNPKG

@design-automation/mobius-inline-funcs

Version:
9 lines (8 loc) 321 B
/** * Converts all the alphabetic characters in a string to lowercase. * \n * Overloaded. str can be one string or a list of strings. * @param str Input string, or list of input strings. * @returns The modified lowercase string. */ export declare function strLow(str: string | string[]): string | string[];