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

@domonda/plumb

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@domonda/plumb - npm Package Compare versions

Comparing version 2.2.4 to 2.2.5

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [2.2.5](https://github.com/domonda/domonda-js/compare/@domonda/plumb@2.2.4...@domonda/plumb@2.2.5) (2019-11-21)
**Note:** Version bump only for package @domonda/plumb
## [2.2.4](https://github.com/domonda/domonda-js/compare/@domonda/plumb@2.2.3...@domonda/plumb@2.2.4) (2019-10-01)

@@ -8,0 +16,0 @@

2

package.json
{
"name": "@domonda/plumb",
"version": "2.2.4",
"version": "2.2.5",
"description": "Simple state management inspired by Observables.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -9,6 +9,6 @@ /**

}
export declare type Subscriber<S, T> = ((state: Readonly<S>, tag: T) => void) | ({
export declare type Subscriber<S, T> = ((state: Readonly<S>, tag: T) => void) | {
dispose?: () => void;
next?: (state: Readonly<S>, tag: T) => void;
});
};
export declare type Subscription = Disposable;

@@ -15,0 +15,0 @@ export declare type Transformer<S, T> = (state: Readonly<S>, tag: T | undefined) => S;

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