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

callbag

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

callbag - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

getting-started.md

2

package.json
{
"name": "callbag",
"version": "1.0.0",
"version": "1.0.1",
"description": "A standard for JS callbacks",

@@ -5,0 +5,0 @@ "repository": {

@@ -12,4 +12,4 @@ export type START = 0;

export type Callbag = (type: number, data: any) => void;
export type Callbag = (type: START | DATA | END, payload?: any) => void;
export type Factory = (...args: Array<any>) => Callbag;
export type Operator = (...args: Array<any>) => (source: Callbag) => Callbag;
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