@technobuddha/library
Version:
A large library of useful functions
14 lines (12 loc) • 457 B
text/typescript
import { collapse } from './collapse.ts';
import { empty } from './unicode.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 function build(...args: Parameters<typeof collapse<string>>): string {
return collapse(...args).join(empty);
}