init component
This commit is contained in:
6
node_modules/fp-ts/lib/Alt.js
generated
vendored
Normal file
6
node_modules/fp-ts/lib/Alt.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
"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); }; };
|
||||
}
|
||||
Reference in New Issue
Block a user