Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

20
node_modules/es-toolkit/dist/compat/array/join.mjs generated vendored Normal file
View File

@@ -0,0 +1,20 @@
import { isArrayLike } from "../predicate/isArrayLike.mjs";
//#region src/compat/array/join.ts
/**
* 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"
*/
function join(array, separator) {
if (!isArrayLike(array)) return "";
return Array.from(array).join(separator);
}
//#endregion
export { join };