@design-automation/mobius-inline-funcs
Version:
Mobius Spatial Information Model
9 lines (8 loc) • 321 B
TypeScript
/**
* 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[];