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.0.1 to 0.1.0

8

CHANGELOG.md

@@ -15,1 +15,9 @@ # Changelog

# 0.1.0
- **Breaking Change**
- upgrade to latest fp-ts (@gcanti)
# 0.0.1
Initial release

11

lib/index.d.ts

@@ -0,1 +1,4 @@

import { Monoid } from 'fp-ts/lib/Monoid';
import { Monad } from 'fp-ts/lib/Monad';
import { Alternative } from 'fp-ts/lib/Alternative';
import { Observable } from 'rxjs/Observable';

@@ -8,5 +11,6 @@ import 'rxjs/add/observable/empty';

import 'rxjs/add/operator/mergeMap';
declare module 'fp-ts/lib/HKT' {
interface HKT<A> {
Observable: Observable<A>;
declare module 'rxjs/Observable' {
interface Observable<T> {
_URI: URI;
_A: T;
}

@@ -24,1 +28,2 @@ }

export declare function zero<A>(): Observable<A>;
export declare const rxjs: Monoid<Observable<any>> & Monad<URI> & Alternative<URI>;

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

exports.zero = zero;
var proof = {
exports.rxjs = {
URI: exports.URI,

@@ -55,4 +55,2 @@ concat: concat,

};
// tslint:disable-next-line no-unused-expression
proof;
//# sourceMappingURL=index.js.map
{
"name": "fp-ts-rxjs",
"version": "0.0.1",
"version": "0.1.0",
"description": "fp-ts bindings for RxJS",
"files": [
"lib"
],
"files": ["lib"],
"main": "lib/index.js",

@@ -29,3 +27,3 @@ "typings": "lib/index.d.ts",

"dependencies": {
"fp-ts": "^0.3.1",
"fp-ts": "^0.4.0",
"rxjs": "^5.4.0"

@@ -37,17 +35,10 @@ },

"mocha": "3.2.0",
"prettier": "^1.4.2",
"ts-node": "2.0.0",
"prettier": "1.5.2",
"ts-node": "3.2.0",
"tslint": "4.4.2",
"tslint-config-standard": "4.0.0",
"typescript": "2.3.3",
"typings-checker": "1.1.2"
"typescript": "2.4.1"
},
"tags": [
"fp-ts",
"rxjs"
],
"keywords": [
"fp-ts",
"rxjs"
]
"tags": ["fp-ts", "rxjs"],
"keywords": ["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