init component
This commit is contained in:
90
node_modules/fp-ts/lib/FromEither.js
generated
vendored
Normal file
90
node_modules/fp-ts/lib/FromEither.js
generated
vendored
Normal file
@@ -0,0 +1,90 @@
|
||||
"use strict";
|
||||
/**
|
||||
* The `FromEither` type class represents those data types which support errors.
|
||||
*
|
||||
* @since 2.10.0
|
||||
*/
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.fromOption = fromOption;
|
||||
exports.fromPredicate = fromPredicate;
|
||||
exports.fromOptionK = fromOptionK;
|
||||
exports.chainOptionK = chainOptionK;
|
||||
exports.fromEitherK = fromEitherK;
|
||||
exports.chainEitherK = chainEitherK;
|
||||
exports.chainFirstEitherK = chainFirstEitherK;
|
||||
exports.filterOrElse = filterOrElse;
|
||||
exports.tapEither = tapEither;
|
||||
var Chain_1 = require("./Chain");
|
||||
var function_1 = require("./function");
|
||||
var _ = __importStar(require("./internal"));
|
||||
function fromOption(F) {
|
||||
return function (onNone) { return function (ma) { return F.fromEither(_.isNone(ma) ? _.left(onNone()) : _.right(ma.value)); }; };
|
||||
}
|
||||
function fromPredicate(F) {
|
||||
return function (predicate, onFalse) {
|
||||
return function (a) {
|
||||
return F.fromEither(predicate(a) ? _.right(a) : _.left(onFalse(a)));
|
||||
};
|
||||
};
|
||||
}
|
||||
function fromOptionK(F) {
|
||||
var fromOptionF = fromOption(F);
|
||||
return function (onNone) {
|
||||
var from = fromOptionF(onNone);
|
||||
return function (f) { return (0, function_1.flow)(f, from); };
|
||||
};
|
||||
}
|
||||
function chainOptionK(F, M) {
|
||||
var fromOptionKF = fromOptionK(F);
|
||||
return function (onNone) {
|
||||
var from = fromOptionKF(onNone);
|
||||
return function (f) { return function (ma) { return M.chain(ma, from(f)); }; };
|
||||
};
|
||||
}
|
||||
function fromEitherK(F) {
|
||||
return function (f) { return (0, function_1.flow)(f, F.fromEither); };
|
||||
}
|
||||
function chainEitherK(F, M) {
|
||||
var fromEitherKF = fromEitherK(F);
|
||||
return function (f) { return function (ma) { return M.chain(ma, fromEitherKF(f)); }; };
|
||||
}
|
||||
function chainFirstEitherK(F, M) {
|
||||
var tapEitherM = tapEither(F, M);
|
||||
return function (f) { return function (ma) { return tapEitherM(ma, f); }; };
|
||||
}
|
||||
function filterOrElse(F, M) {
|
||||
return function (predicate, onFalse) {
|
||||
return function (ma) {
|
||||
return M.chain(ma, function (a) { return F.fromEither(predicate(a) ? _.right(a) : _.left(onFalse(a))); });
|
||||
};
|
||||
};
|
||||
}
|
||||
/** @internal */
|
||||
function tapEither(F, M) {
|
||||
var fromEither = fromEitherK(F);
|
||||
var tapM = (0, Chain_1.tap)(M);
|
||||
return function (self, f) { return tapM(self, fromEither(f)); };
|
||||
}
|
||||
Reference in New Issue
Block a user