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

26
node_modules/es-toolkit/dist/compat/function/flow.js generated vendored Normal file
View File

@@ -0,0 +1,26 @@
const require_flatten = require("../../array/flatten.js");
const require_flow = require("../../function/flow.js");
//#region src/compat/function/flow.ts
/**
* Creates a new function that executes the given functions in sequence. The return value of the previous function is passed as an argument to the next function.
*
* The `this` context of the returned function is also passed to the functions provided as parameters.
*
* @param {Array<((...args: any[]) => any) | Array<(...args: any[]) => any>>} funcs The functions to invoke.
* @returns {(...args: any[]) => any} Returns the new composite function.
*
* @example
* const add = (x: number, y: number) => x + y;
* const square = (n: number) => n * n;
* const double = (n: number) => n * 2;
*
* const combined = flow([add, square], double);
* console.log(combined(1, 2)); // 18
*/
function flow(...funcs) {
const flattenFuncs = require_flatten.flatten(funcs, 1);
if (flattenFuncs.some((func) => typeof func !== "function")) throw new TypeError("Expected a function");
return require_flow.flow(...flattenFuncs);
}
//#endregion
exports.flow = flow;