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

refract-redux-callbag

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

refract-redux-callbag - npm Package Compare versions

Comparing version 1.0.0-5 to 1.0.0-6

6

package.json
{
"name": "refract-redux-callbag",
"version": "1.0.0-5",
"version": "1.0.0-6",
"main": "index.js",

@@ -14,2 +14,3 @@ "jsnext:main": "index.es.js",

"dependencies": {
"callbag": "~1.1.0",
"callbag-drop-repeats": "~1.0.0",

@@ -19,4 +20,5 @@ "callbag-from-obs": "~1.2.0",

"callbag-pipe": "~1.1.1",
"callbag-start-with": "~2.1.1"
"callbag-start-with": "~2.1.1",
"symbol-observable": "~1.2.0"
}
}

@@ -32,3 +32,3 @@ <p align="center">

Refract is an extensible library built for React. In addition we provide a Redux integration, which can also serve as a template for integrations with other libraries.
Refract is an extensible library built for React, with bindings available for Inferno and Preact. In addition we provide a Redux integration, which can also serve as a template for integrations with other libraries.

@@ -51,3 +51,3 @@ # Why?

Refract is available for a number of reactive programming libraries. For each library, a Refract integration is available for both React and Redux.
Refract is available for a number of reactive programming libraries. For each library, a Refract integration is available for React, Inferno, Preact and Redux.

@@ -57,8 +57,8 @@ Available packages:

<!-- prettier-ignore-start -->
| | [React](https://github.com/facebook/react) | [Redux](https://github.com/reduxjs/redux) |
| --- | --- | --- |
| **[Callbag](https://github.com/callbag/callbag)** | refract-callbag | refract-redux-callbag |
| **[Most](https://github.com/cujojs/most)** | refract-most | refract-redux-most |
| **[RxJS](https://github.com/reactivex/rxjs)** | refract-rxjs | refract-redux-rxjs |
| **[xstream](https://github.com/staltz/xstream)** | refract-xstream | refract-redux-xstream |
| | [React](https://github.com/facebook/react) | [Inferno](https://infernojs.org/) | [Preact](https://preactjs.com/) | [Redux](https://github.com/reduxjs/redux) |
| --- | --- | --- | --- | --- |
| **[Callbag](https://github.com/callbag/callbag)** | refract-callbag | refract-inferno-callbag | refact-preact-callbag | refract-redux-callbag |
| **[Most](https://github.com/cujojs/most)** | refract-most | refract-inferno-most | refact-preact-most | refract-redux-most |
| **[RxJS](https://github.com/reactivex/rxjs)** | refract-rxjs | refract-inferno-rxjs | refact-preact-rxjs | refract-redux-rxjs |
| **[xstream](https://github.com/staltz/xstream)** | refract-xstream | refract-inferno-xstream | refact-preact-xstream | refract-redux-xstream |
<!-- prettier-ignore-end -->

@@ -65,0 +65,0 @@

@@ -0,1 +1,2 @@

import { Source } from 'callbag'
import { Selector } from './baseTypes'

@@ -5,9 +6,2 @@ export interface ObserveFn {

}
export interface Callbag<I, O> {
(t: 0, d: Callbag<O, I>): void
(t: 1, d: I): void
(t: 2, d?: any): void
}
export declare type Source<T> = Callbag<void, T>
export declare type Sink<T> = Callbag<T, void>
export interface Listener<T> {

@@ -14,0 +8,0 @@ next: (val: T) => void

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