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

@most/core

Package Overview
Dependencies
Maintainers
4
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@most/core - npm Package Compare versions

Comparing version 1.4.1 to 1.4.2

2

package.json
{
"name": "@most/core",
"version": "1.4.1",
"version": "1.4.2",
"description": "Reactive programming with lean, functions-only, curried, tree-shakeable API",

@@ -5,0 +5,0 @@ "typings": "type-definitions/most.d.ts",

@@ -5,1 +5,8 @@ import { Stream } from '@most/types';

export function mergeConcurrently<A>(concurrency: number): (s: Stream<Stream<A>>) => Stream<A>;
export function mergeMapConcurrently<A, B>(f: (a: A) => Stream<B>, concurrency: number, s: Stream<A>): Stream<B>;
export function mergeMapConcurrently<A, B>(f: (a: A) => Stream<B>, concurrency: number): (s: Stream<A>) => Stream<B>;
export function mergeMapConcurrently<A, B>(f: (a: A) => Stream<B>): {
(concurrency: number, s: Stream<A>): Stream<B>;
(concurrency: number): (s: Stream<A>) => Stream<B>;
};

Sorry, the diff of this file is not supported yet

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