Files
manolia-alpha/node_modules/fp-ts/lib/Alt.js
Robin COuret e0e50af706 init component
2026-02-16 17:28:37 +01:00

7 lines
286 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.altAll = altAll;
function altAll(F) {
return function (startWith) { return function (as) { return as.reduce(function (acc, a) { return F.alt(acc, function () { return a; }); }, startWith); }; };
}