monad-ts
Version:
Monad-ts is a small library implements some of key monads and way to chain them in a pipe (flow) in JavaScript and TypeScript. Angular 2+ compatible.
43 lines (42 loc) • 1.73 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var monad_1 = require("./monad");
/**
* Class ErrorM - return given value or produce Error if take Error or get Error after execution of f(v).
* @extends {Monad}
*/
var ErrorM = /** @class */ (function (_super) {
__extends(ErrorM, _super);
function ErrorM() {
return _super !== null && _super.apply(this, arguments) || this;
}
/**
* Chains the operations on a monadic values.
* @method bind
* @param {function(v: T) => Pr<U>} f - transformation function for a monad.
* @param {any} v - underlying value for a monad.
* @return {Pr<U> | Error} transformed by f() value v or Error.
*/
ErrorM.prototype.bind = function (f, v) {
if (v !== v || v === Infinity || v === -Infinity || v instanceof Error) {
return this.fail(v);
}
else {
var vL = this.just(f, v);
return (vL !== vL || vL === Infinity || vL === -Infinity || vL instanceof Error) ? this.fail(vL) : vL;
}
};
return ErrorM;
}(monad_1.Monad));
exports.ErrorM = ErrorM;
//Copyright (c) 2017 Alex Tranchenko. All rights reserved.