Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ioffice/fp

Package Overview
Dependencies
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ioffice/fp - npm Package Compare versions

Comparing version 0.1.0 to 0.2.0

8

CHANGELOG.md

@@ -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

8

fesm5/Either.js

@@ -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';

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc