@ioffice/fp
Advanced tools
Comparing version 0.1.0 to 0.2.0
@@ -16,2 +16,7 @@ # Changelog | ||
## [0.2.0] - April 18, 2020 | ||
- Removed `pipeEither` and `asyncPipeEither`. | ||
- Fixed `evalIteration` and `asyncEvalIteration` not always returning a an Either object. | ||
## [0.1.0] - February 07, 2020 | ||
@@ -28,4 +33,5 @@ - Deprecated `pipeEither` and `asyncPipeEither`. | ||
[Unreleased]: https://github.com/iOffice/fp-eslib/compare/0.1.0...HEAD | ||
[Unreleased]: https://github.com/iOffice/fp-eslib/compare/0.2.0...HEAD | ||
[0.2.0]: https://github.com/iOffice/fp-eslib/compare/0.1.0...0.2.0 | ||
[0.1.0]: https://github.com/iOffice/fp-eslib/compare/0.0.1...0.1.0 | ||
[0.0.1]: https://github.com/iOffice/fp-eslib/compare/7270ffed28016080f8bdecef9d29e059a6c3598a...0.0.1 |
@@ -321,3 +321,5 @@ import * as tslib_1 from "tslib"; | ||
catch (ex) { | ||
return ex; | ||
if (ex instanceof Either) | ||
return ex; | ||
return Left(ex); | ||
} | ||
@@ -340,3 +342,5 @@ } | ||
ex_1 = _b.sent(); | ||
return [2 /*return*/, ex_1]; | ||
if (ex_1 instanceof Either) | ||
return [2 /*return*/, ex_1]; | ||
return [2 /*return*/, Left(ex_1)]; | ||
case 3: return [2 /*return*/]; | ||
@@ -343,0 +347,0 @@ } |
@@ -1,2 +0,1 @@ | ||
export * from './pipes'; | ||
export * from './Either'; | ||
@@ -3,0 +2,0 @@ export * from './Matcher'; |
@@ -321,3 +321,5 @@ "use strict"; | ||
catch (ex) { | ||
return ex; | ||
if (ex instanceof Either) | ||
return ex; | ||
return Left(ex); | ||
} | ||
@@ -335,3 +337,5 @@ } | ||
catch (ex) { | ||
return ex; | ||
if (ex instanceof Either) | ||
return ex; | ||
return Left(ex); | ||
} | ||
@@ -338,0 +342,0 @@ }); |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
tslib_1.__exportStar(require("./pipes"), exports); | ||
tslib_1.__exportStar(require("./Either"), exports); | ||
@@ -6,0 +5,0 @@ tslib_1.__exportStar(require("./Matcher"), exports); |
{ | ||
"name": "@ioffice/fp", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "author": "iOFFICE Team", |
@@ -1,2 +0,1 @@ | ||
export * from './pipes'; | ||
export * from './Either'; | ||
@@ -3,0 +2,0 @@ export * from './Matcher'; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
74302
22
2166