@technobuddha/library
Version:
A large library of useful functions
10 lines (9 loc) • 405 B
TypeScript
declare type stringy = string | string[] | IterableIterator<string>;
/**
* Concatenates strings and/or arrays of strings
*
* @param args Concatenates a list of strings, string arrays, or functions that return a string or string array.
* @returns The concatenation of *args*.
*/
export declare function build(...args: (stringy | Generator<stringy> | (() => stringy))[]): string;
export default build;