@arrows/array
Version:
Functional tools for JS arrays
13 lines (12 loc) • 326 B
TypeScript
/**
* Functional wrapper for Array.prototype.join
*
* Adds all the elements of an array separated by the specified separator string.
*
* @param separator Separator
* @param arr Initial array
* @returns String of joined array elements.
*/
declare const join: (...x: any[]) => any;
export { join };
export default join;