New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

fp-ts-rxjs

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fp-ts-rxjs - npm Package Compare versions

Comparing version 0.2.0 to 0.3.0

5

CHANGELOG.md

@@ -15,2 +15,7 @@ # Changelog

# 0.3.0
- **Breaking Change**
- upgrade to latest fp-ts (0.6) and latest TypeScript (2.6) (@gcanti)
# 0.2.0

@@ -17,0 +22,0 @@

2

lib/index.d.ts

@@ -30,4 +30,4 @@ import { Monoid } from 'fp-ts/lib/Monoid';

export declare const chain: <A, B>(f: (a: A) => Observable<B>, fa: Observable<A>) => Observable<B>;
export declare const alt: <A>(x: Observable<A>) => (y: Observable<A>) => Observable<A>;
export declare const alt: <A>(x: Observable<A>, y: Observable<A>) => Observable<A>;
export declare const zero: <A>() => Observable<A>;
export declare const rxjs: Monoid<Observable<any>> & Monad<URI> & Alternative<URI>;

@@ -19,3 +19,3 @@ "use strict";

exports.chain = function (f, fa) { return fa.flatMap(f); };
exports.alt = function (x) { return function (y) { return Observable_1.Observable.merge(x, y); }; };
exports.alt = function (x, y) { return Observable_1.Observable.merge(x, y); };
exports.zero = function () { return Observable_1.Observable.empty(); };

@@ -22,0 +22,0 @@ exports.rxjs = {

{
"name": "fp-ts-rxjs",
"version": "0.2.0",
"version": "0.3.0",
"description": "fp-ts bindings for RxJS",

@@ -27,3 +27,3 @@ "files": ["lib"],

"dependencies": {
"fp-ts": "^0.5.1",
"fp-ts": "^0.6.0",
"rxjs": "^5.4.0"

@@ -39,3 +39,3 @@ },

"tslint-config-standard": "4.0.0",
"typescript": "^2.5.2"
"typescript": "2.6.0-rc"
},

@@ -42,0 +42,0 @@ "tags": ["fp-ts", "rxjs"],

Sorry, the diff of this file is not supported yet

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