Socket
Socket
Sign inDemoInstall

baconjs

Package Overview
Dependencies
0
Maintainers
2
Versions
222
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.0.7 to 3.0.8

4

package.json
{
"name": "baconjs",
"description": "A small functional reactive programming lib for JavaScript.",
"version": "3.0.7",
"version": "3.0.8",
"keywords": [

@@ -74,3 +74,3 @@ "bacon.js",

"prepublish": "npm run lint && npm run dist",
"version": "3.0.7",
"version": "3.0.8",
"browsertest-bundle": "browsertest/browserify",

@@ -77,0 +77,0 @@ "browsertest-open": "open browsertest/mocha.runner.html",

@@ -87,2 +87,3 @@ import { Desc } from "./describe";

*/
abstract concat(other: Observable<V>): Observable<V>;
abstract concat<V2>(other: Observable<V2>): Observable<V | V2>;

@@ -748,2 +749,3 @@ /**

*/
concat(other: Observable<V>): Property<V>;
concat<V2>(other: Observable<V2>): Property<V | V2>;

@@ -1003,2 +1005,3 @@ /**

*/
concat(other: Observable<V>, options?: EventStreamOptions): EventStream<V>;
concat<V2>(other: Observable<V2>, options?: EventStreamOptions): EventStream<V | V2>;

@@ -1119,2 +1122,3 @@ /** @hidden */

*/
merge(other: EventStream<V>): EventStream<V>;
merge<V2>(other: EventStream<V2>): EventStream<V | V2>;

@@ -1121,0 +1125,0 @@ /**

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc