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

callbag

Package Overview
Dependencies
Maintainers
2
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.1.0 to 1.2.0

.github/ISSUE_TEMPLATE/discussion.md

4

CopyrightWaivers.txt

@@ -26,2 +26,4 @@ Copyright Statement for Contributions to the Callbag Standard

krawaller | David Waller, david@krawaller.se
bloodyKnuckles | Jay Scott ANDERSON,
bloodyKnuckles | Jay Scott ANDERSON
Andarist | Mateusz Burzyński, mateuszburzynski@gmail.com
{
"name": "callbag",
"version": "1.1.0",
"version": "1.2.0",
"description": "A standard for JS callbacks",

@@ -25,2 +25,2 @@ "repository": {

}
}
}

@@ -37,1 +37,7 @@ export type START = 0;

) => (source: Source<T>) => Source<R>;
/**
* Conditional types for contained type retrieval
*/
export type UnwrapSource<T extends Source<any>> = T extends Source<infer R> ? R : never;
export type UnwrapSink<T extends Sink<any>> = T extends Sink<infer R> ? R : never;
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