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

callbag-concat

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

callbag-concat - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

4

package.json
{
"name": "callbag-concat",
"version": "1.2.0",
"version": "1.2.1",
"description": "Callbag factory that concatenates data from multiple callbag sources",

@@ -28,4 +28,4 @@ "repository": {

"dependencies": {
"callbag": "^1.1.0"
"callbag": "^1.2.0"
}
}

@@ -1,7 +0,5 @@

import { Source } from 'callbag';
import { Source, UnwrapSource } from 'callbag';
type SourceType<T extends Source<any>> = T extends Source<infer O> ? O : never;
export default function concat<T extends Source<any>[]>(
...sources: T
): Source<SourceType<T[number]>>;
): Source<UnwrapSource<T[number]>>;
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