Erster Docker-Stand

This commit is contained in:
Ali
2026-02-20 16:06:40 +09:00
commit f31e2e8ed3
8818 changed files with 1605323 additions and 0 deletions

55
_node_modules/effect/dist/esm/ExecutionStrategy.js generated vendored Normal file
View File

@@ -0,0 +1,55 @@
import * as internal from "./internal/executionStrategy.js";
/**
* Execute effects sequentially.
*
* @since 2.0.0
* @category constructors
*/
export const sequential = internal.sequential;
/**
* Execute effects in parallel.
*
* @since 2.0.0
* @category constructors
*/
export const parallel = internal.parallel;
/**
* Execute effects in parallel, up to the specified number of concurrent fibers.
*
* @since 2.0.0
* @category constructors
*/
export const parallelN = internal.parallelN;
/**
* Returns `true` if the specified `ExecutionStrategy` is an instance of
* `Sequential`, `false` otherwise.
*
* @since 2.0.0
* @category refinements
*/
export const isSequential = internal.isSequential;
/**
* Returns `true` if the specified `ExecutionStrategy` is an instance of
* `Sequential`, `false` otherwise.
*
* @since 2.0.0
* @category refinements
*/
export const isParallel = internal.isParallel;
/**
* Returns `true` if the specified `ExecutionStrategy` is an instance of
* `Sequential`, `false` otherwise.
*
* @since 2.0.0
* @category refinements
*/
export const isParallelN = internal.isParallelN;
/**
* Folds over the specified `ExecutionStrategy` using the provided case
* functions.
*
* @since 2.0.0
* @category folding
*/
export const match = internal.match;
//# sourceMappingURL=ExecutionStrategy.js.map