@technobuddha/library
Version: 
A large library of useful functions
10 lines (9 loc) • 383 B
TypeScript
import { collapse } from './collapse.ts';
/**
 * 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*.
 * @group String
 * @category Construction
 */
export declare function build(...args: Parameters<typeof collapse<string>>): string;