UNPKG

@arrows/array

Version:
13 lines (12 loc) 326 B
/** * 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;