LendAndRegret/node_modules/es-toolkit/dist/compat/array/join.d.mts
2026-05-02 17:27:43 +08:00

16 lines
587 B
TypeScript

/**
* Joins elements of an array into a string.
*
* @param {ArrayLike<any> | null | undefined} array - The array to join.
* @param {string} [separator=','] - The separator used to join the elements, default is common separator `,`.
* @returns {string} - Returns a string containing all elements of the array joined by the specified separator.
*
* @example
* const arr = ["a", "b", "c"];
* const result = join(arr, "~");
* console.log(result); // Output: "a~b~c"
*/
declare function join(array: ArrayLike<any> | null | undefined, separator?: string): string;
export { join };